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/ibf-dsp561 | |
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/ibf-dsp561')
-rw-r--r-- | board/ibf-dsp561/ibf-dsp561.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/board/ibf-dsp561/ibf-dsp561.c b/board/ibf-dsp561/ibf-dsp561.c index 551fc29..b5bebd4 100644 --- a/board/ibf-dsp561/ibf-dsp561.c +++ b/board/ibf-dsp561/ibf-dsp561.c @@ -16,10 +16,3 @@ int checkboard(void) printf(" Support: http://www.i-syst.com/\n"); 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; -} |