diff options
author | Martha M Stan <mmarx@silicontkx.com> | 2009-09-21 18:07:14 (GMT) |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-09-24 22:45:30 (GMT) |
commit | 054197ba8ee5ef1e41694df58531b6e53ec43f2d (patch) | |
tree | cd9c07cf88ea69f6af85ad8a0ceb42d80b1c7549 /board | |
parent | 5e498dfab87c5b9bd1ad7b9a35f38b9e5dcd2244 (diff) | |
download | u-boot-054197ba8ee5ef1e41694df58531b6e53ec43f2d.tar.xz |
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.c | 2 | ||||
-rw-r--r-- | board/esd/mecp5123/mecp5123.c | 2 | ||||
-rw-r--r-- | board/freescale/mpc5121ads/mpc5121ads.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/board/davedenx/aria/aria.c b/board/davedenx/aria/aria.c index 2064aa2..cc69c9d 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 f591e32..5139358 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 a0d7a82..8defb00 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; } |