diff options
author | Simon Glass <sjg@chromium.org> | 2017-03-31 14:40:32 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-05 20:36:51 (GMT) |
commit | 76b00aca4f1c13bc8f91a539e612abc70d0c692f (patch) | |
tree | 35f0e984413ef3d44ff50c53e8adc418f10b40e2 /arch/arm/mach-orion5x/dram.c | |
parent | abf7f4c7040b3914bea327243dcfac0ef840fbaf (diff) | |
download | u-boot-76b00aca4f1c13bc8f91a539e612abc70d0c692f.tar.xz |
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 'arch/arm/mach-orion5x/dram.c')
-rw-r--r-- | arch/arm/mach-orion5x/dram.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-orion5x/dram.c b/arch/arm/mach-orion5x/dram.c index 9ed93d2..e9c03f3 100644 --- a/arch/arm/mach-orion5x/dram.c +++ b/arch/arm/mach-orion5x/dram.c @@ -42,7 +42,7 @@ int dram_init (void) return 0; } -void dram_init_banksize (void) +int dram_init_banksize(void) { int i; @@ -52,4 +52,6 @@ void dram_init_banksize (void) (long *) (gd->bd->bi_dram[i].start), CONFIG_MAX_RAM_BANK_SIZE); } + + return 0; } |