diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-11-03 06:28:22 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-01-17 09:17:26 -0500 |
commit | fa45bd498a1970574f4b7539b67cc2286f1324fa (patch) | |
tree | 676afe67823c39f6f1342b96b4cc66bac24afd8d /board/tcm-bf537 | |
parent | b1e2c5519a06f9a5841a7a434bf4da4d393f8df5 (diff) | |
download | u-boot-imx-fa45bd498a1970574f4b7539b67cc2286f1324fa.zip u-boot-imx-fa45bd498a1970574f4b7539b67cc2286f1324fa.tar.gz u-boot-imx-fa45bd498a1970574f4b7539b67cc2286f1324fa.tar.bz2 |
Blackfin: kill off useless initdram() usage
While the initdram() function makes sense on some arches, it doesn't for
Blackfin systems as it's always implemented the same way.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'board/tcm-bf537')
-rw-r--r-- | board/tcm-bf537/tcm-bf537.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/board/tcm-bf537/tcm-bf537.c b/board/tcm-bf537/tcm-bf537.c index 573387d..60742df 100644 --- a/board/tcm-bf537/tcm-bf537.c +++ b/board/tcm-bf537/tcm-bf537.c @@ -24,13 +24,6 @@ int checkboard(void) return 0; } -phys_size_t initdram(int board_type) -{ - gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; - gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE; - return gd->bd->bi_memsize; -} - #ifdef CONFIG_BFIN_MAC static void board_init_enetaddr(uchar *mac_addr) { |