summaryrefslogtreecommitdiff
path: root/board/cirrus
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-03-31 14:40:32 (GMT)
committerTom Rini <trini@konsulko.com>2017-04-05 20:36:51 (GMT)
commit76b00aca4f1c13bc8f91a539e612abc70d0c692f (patch)
tree35f0e984413ef3d44ff50c53e8adc418f10b40e2 /board/cirrus
parentabf7f4c7040b3914bea327243dcfac0ef840fbaf (diff)
downloadu-boot-fsl-qoriq-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 'board/cirrus')
-rw-r--r--board/cirrus/edb93xx/edb93xx.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/board/cirrus/edb93xx/edb93xx.c b/board/cirrus/edb93xx/edb93xx.c
index 51ff162..720b490 100644
--- a/board/cirrus/edb93xx/edb93xx.c
+++ b/board/cirrus/edb93xx/edb93xx.c
@@ -216,9 +216,11 @@ static unsigned dram_init_banksize_int(int print)
return dram_total;
}
-void dram_init_banksize(void)
+int dram_init_banksize(void)
{
dram_init_banksize_int(0);
+
+ return 0;
}
/* called in board_init_f (before relocation) */