From: Przemyslaw Marczak Date: Mon, 28 Jul 2014 15:43:23 +0000 (+0200) Subject: samsung:board:board_init: use CONFIG_SYS_SDRAM_BASE X-Git-Tag: submit/tizen_common/20141030.153846~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=77eae8e03d096efdb960d8ec3643ffa1629b9c5e;p=platform%2Fkernel%2Fu-boot.git samsung:board:board_init: use CONFIG_SYS_SDRAM_BASE Change-Id: I0e974580f4fa725f9a9e824591be57cb573a02b8 Signed-off-by: Przemyslaw Marczak --- diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c index 5c3c5bb925..94bcc8cb5a 100644 --- a/board/samsung/common/board.c +++ b/board/samsung/common/board.c @@ -78,7 +78,7 @@ static void boot_temp_check(void) int board_init(void) { - gd->bd->bi_boot_params = (PHYS_SDRAM_1 + 0x100UL); + gd->bd->bi_boot_params = (CONFIG_SYS_SDRAM_BASE + 0x100UL); #if defined CONFIG_EXYNOS_TMU if (tmu_init(gd->fdt_blob) != TMU_STATUS_NORMAL) { debug("%s: Failed to init TMU\n", __func__);