diff options
Diffstat (limited to 'board/freescale/mpc8641hpcn/mpc8641hpcn.c')
| -rw-r--r-- | board/freescale/mpc8641hpcn/mpc8641hpcn.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/board/freescale/mpc8641hpcn/mpc8641hpcn.c b/board/freescale/mpc8641hpcn/mpc8641hpcn.c index db4695304..1bb563e41 100644 --- a/board/freescale/mpc8641hpcn/mpc8641hpcn.c +++ b/board/freescale/mpc8641hpcn/mpc8641hpcn.c @@ -25,7 +25,7 @@  #include <asm/processor.h>  #include <asm/immap_86xx.h>  #include <asm/immap_fsl_pci.h> -#include <spd_sdram.h> +#include <asm/fsl_ddr_sdram.h>  #include <asm/io.h>  #include <libfdt.h>  #include <fdt_support.h> @@ -36,10 +36,8 @@  extern void ddr_enable_ecc(unsigned int dram_size);  #endif -void sdram_init(void);  long int fixed_sdram(void); -  int board_early_init_f(void)  {  	return 0; @@ -61,7 +59,7 @@ initdram(int board_type)  	long dram_size = 0;  #if defined(CONFIG_SPD_EEPROM) -	dram_size = spd_sdram(); +	dram_size = fsl_ddr_sdram();  #else  	dram_size = fixed_sdram();  #endif  |