diff options
Diffstat (limited to 'board/freescale/t102xqds')
-rw-r--r-- | board/freescale/t102xqds/ddr.c | 2 | ||||
-rw-r--r-- | board/freescale/t102xqds/spl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/t102xqds/ddr.c b/board/freescale/t102xqds/ddr.c index b6b1191990..507929bb70 100644 --- a/board/freescale/t102xqds/ddr.c +++ b/board/freescale/t102xqds/ddr.c @@ -169,7 +169,7 @@ void board_mem_sleep_setup(void) } #endif -phys_size_t initdram(int board_type) +phys_size_t initdram(void) { phys_size_t dram_size; diff --git a/board/freescale/t102xqds/spl.c b/board/freescale/t102xqds/spl.c index 3e96b33c40..a1481e9b63 100644 --- a/board/freescale/t102xqds/spl.c +++ b/board/freescale/t102xqds/spl.c @@ -142,7 +142,7 @@ void board_init_r(gd_t *gd, ulong dest_addr) i2c_init_all(); - gd->ram_size = initdram(0); + gd->ram_size = initdram(); #ifdef CONFIG_SPL_MMC_BOOT mmc_boot(); |