diff options
Diffstat (limited to 'cpu/mpc86xx')
| -rw-r--r-- | cpu/mpc86xx/spd_sdram.c | 4 | ||||
| -rw-r--r-- | cpu/mpc86xx/speed.c | 3 | 
2 files changed, 6 insertions, 1 deletions
| diff --git a/cpu/mpc86xx/spd_sdram.c b/cpu/mpc86xx/spd_sdram.c index d57bcdf2c..265e033fb 100644 --- a/cpu/mpc86xx/spd_sdram.c +++ b/cpu/mpc86xx/spd_sdram.c @@ -1114,8 +1114,10 @@ spd_sdram(void)  	int memsize_ddr1 = 0;  	unsigned int law_size_ddr1;  	volatile immap_t *immap = (immap_t *)CFG_IMMR; -	volatile ccsr_ddr_t *ddr1 = &immap->im_ddr1;  	volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm; +#ifdef CONFIG_DDR_INTERLEAVE +	volatile ccsr_ddr_t *ddr1 = &immap->im_ddr1; +#endif  #if (CONFIG_NUM_DDR_CONTROLLERS > 1)  	int memsize_ddr2_dimm1 = 0; diff --git a/cpu/mpc86xx/speed.c b/cpu/mpc86xx/speed.c index 23161ca8c..4f7e8f17d 100644 --- a/cpu/mpc86xx/speed.c +++ b/cpu/mpc86xx/speed.c @@ -31,6 +31,9 @@  DECLARE_GLOBAL_DATA_PTR; +/* used in some defintiions of CONFIG_SYS_CLK_FREQ */ +extern unsigned long get_board_sys_clk(unsigned long dummy); +  void get_sys_info(sys_info_t *sysInfo)  {  	volatile immap_t *immap = (immap_t *) CFG_IMMR; |