diff options
author | Simon Glass <sjg@chromium.org> | 2017-03-31 08:40:32 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-05 16:36:51 -0400 |
commit | 76b00aca4f1c13bc8f91a539e612abc70d0c692f (patch) | |
tree | 35f0e984413ef3d44ff50c53e8adc418f10b40e2 /board/hisilicon | |
parent | abf7f4c7040b3914bea327243dcfac0ef840fbaf (diff) | |
download | u-boot-76b00aca4f1c13bc8f91a539e612abc70d0c692f.tar.gz |
board_f: Drop setup_dram_config() wrapper
By making dram_init_banksize() return an error code we can drop the
wrapper. Adjust this and clean up all implementations.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/hisilicon')
-rw-r--r-- | board/hisilicon/hikey/hikey.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/hisilicon/hikey/hikey.c b/board/hisilicon/hikey/hikey.c index df3b5e717a..0f0eb3acb8 100644 --- a/board/hisilicon/hikey/hikey.c +++ b/board/hisilicon/hikey/hikey.c @@ -410,7 +410,7 @@ int dram_init(void) return 0; } -void dram_init_banksize(void) +int dram_init_banksize(void) { /* * Reserve regions below from DT memory node (which gets generated @@ -442,6 +442,8 @@ void dram_init_banksize(void) gd->bd->bi_dram[5].start = 0x22000000; gd->bd->bi_dram[5].size = 0x1c000000; + + return 0; } void reset_cpu(ulong addr) |