diff options
author | Jon Loeliger <jdl@freescale.com> | 2008-03-04 10:03:03 -0600 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-03-05 00:17:43 +0100 |
commit | a30a549a3553032d809e0356306b62de0b125901 (patch) | |
tree | f6e956c5258328f0ccbe9ef70e98469807b9e151 /board/mpc8540eval | |
parent | 491fb6dea9f52fdb9cb5996e8e978b9e9685179f (diff) | |
download | u-boot-a30a549a3553032d809e0356306b62de0b125901.tar.gz u-boot-a30a549a3553032d809e0356306b62de0b125901.tar.xz u-boot-a30a549a3553032d809e0356306b62de0b125901.zip |
Remove erroneous or extra spd.h #includers.
Many of the spd.h #includers don't need it,
and wanted to have spd_sdram() declared instead.
Since they didn't get that, some also had open
coded extern declarations of it instead or as well.
Fix it all up by using spd_sdram.h where needed.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'board/mpc8540eval')
-rw-r--r-- | board/mpc8540eval/mpc8540eval.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/board/mpc8540eval/mpc8540eval.c b/board/mpc8540eval/mpc8540eval.c index 64dfe0930c..8328b3a062 100644 --- a/board/mpc8540eval/mpc8540eval.c +++ b/board/mpc8540eval/mpc8540eval.c @@ -26,9 +26,7 @@ #include <common.h> #include <asm/processor.h> #include <asm/immap_85xx.h> -#include <spd.h> - -extern long int spd_sdram (void); +#include <spd_sdram.h> long int fixed_sdram (void); @@ -66,7 +64,7 @@ int checkboard (void) long int initdram (int board_type) { long dram_size = 0; - extern long spd_sdram (void); + #if !defined(CONFIG_RAM_AS_FLASH) volatile ccsr_lbc_t *lbc = (void *)(CFG_MPC85xx_LBC_ADDR); sys_info_t sysinfo; |