summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorMartha M Stan <mmarx@silicontkx.com>2009-09-21 14:07:14 -0400
committerWolfgang Denk <wd@denx.de>2009-09-25 00:45:30 +0200
commit054197ba8ee5ef1e41694df58531b6e53ec43f2d (patch)
treecd9c07cf88ea69f6af85ad8a0ceb42d80b1c7549 /board
parent5e498dfab87c5b9bd1ad7b9a35f38b9e5dcd2244 (diff)
downloadtalos-obmc-uboot-054197ba8ee5ef1e41694df58531b6e53ec43f2d.tar.gz
talos-obmc-uboot-054197ba8ee5ef1e41694df58531b6e53ec43f2d.zip
mpc512x: Streamlined fixed_sdram() init sequence.
Signed-off-by: Martha M Stan <mmarx@silicontkx.com> Minor cleanup: Re-ordered default_mddrc_config[] to have matching indices. This allows to use the same index "N" for source and target fields; before, we had code like this out_be32(&im->mddrc.ddr_time_config2, mddrc_config[3]); which always looked like a copy & paste error because 2 != 3. Also, use NULL when meaning a null pointer. Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board')
-rw-r--r--board/davedenx/aria/aria.c2
-rw-r--r--board/esd/mecp5123/mecp5123.c2
-rw-r--r--board/freescale/mpc5121ads/mpc5121ads.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/board/davedenx/aria/aria.c b/board/davedenx/aria/aria.c
index 2064aa2c6c..cc69c9d38e 100644
--- a/board/davedenx/aria/aria.c
+++ b/board/davedenx/aria/aria.c
@@ -101,7 +101,7 @@ int board_early_init_f(void)
phys_size_t initdram (int board_type)
{
- return fixed_sdram();
+ return fixed_sdram(NULL, NULL, 0);
}
int misc_init_r(void)
diff --git a/board/esd/mecp5123/mecp5123.c b/board/esd/mecp5123/mecp5123.c
index f591e32621..5139358443 100644
--- a/board/esd/mecp5123/mecp5123.c
+++ b/board/esd/mecp5123/mecp5123.c
@@ -135,7 +135,7 @@ int board_early_init_f(void)
phys_size_t initdram(int board_type)
{
- return get_ram_size(0, fixed_sdram());
+ return get_ram_size(0, fixed_sdram(NULL, NULL, 0));
}
int misc_init_r(void)
diff --git a/board/freescale/mpc5121ads/mpc5121ads.c b/board/freescale/mpc5121ads/mpc5121ads.c
index a0d7a82e4b..8defb001a3 100644
--- a/board/freescale/mpc5121ads/mpc5121ads.c
+++ b/board/freescale/mpc5121ads/mpc5121ads.c
@@ -137,7 +137,7 @@ phys_size_t initdram(int board_type)
{
u32 msize = 0;
- msize = fixed_sdram();
+ msize = fixed_sdram(NULL, NULL, 0);
return msize;
}
OpenPOWER on IntegriCloud