diff options
| author | Timur Tabi <timur@freescale.com> | 2006-11-03 12:00:28 -0600 | 
|---|---|---|
| committer | Kim Phillips <kim.phillips@freescale.com> | 2006-11-03 19:42:23 -0600 | 
| commit | d239d74b1c937984bc519083a8e7de373a390f06 (patch) | |
| tree | 1311b60e3d00017bbe694570128d08e9699a2a24 /cpu/mpc83xx/spd_sdram.c | |
| parent | f7fb2e703ec9688541416962724adff70a7322cb (diff) | |
| download | olio-uboot-2014.01-d239d74b1c937984bc519083a8e7de373a390f06.tar.xz olio-uboot-2014.01-d239d74b1c937984bc519083a8e7de373a390f06.zip | |
mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
tree matches the other 8xxx trees.
Signed-off-by: Timur Tabi <timur@freescale.com>
Diffstat (limited to 'cpu/mpc83xx/spd_sdram.c')
| -rw-r--r-- | cpu/mpc83xx/spd_sdram.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/cpu/mpc83xx/spd_sdram.c b/cpu/mpc83xx/spd_sdram.c index b91c6130e..dc8f6790a 100644 --- a/cpu/mpc83xx/spd_sdram.c +++ b/cpu/mpc83xx/spd_sdram.c @@ -112,7 +112,7 @@ static void spd_debug(spd_eeprom_t *spd)  long int spd_sdram()  { -	volatile immap_t *immap = (immap_t *)CFG_IMMRBAR; +	volatile immap_t *immap = (immap_t *)CFG_IMMR;  	volatile ddr83xx_t *ddr = &immap->ddr;  	volatile law83xx_t *ecm = &immap->sysconf.ddrlaw[0];  	spd_eeprom_t spd; @@ -562,7 +562,7 @@ static __inline__ unsigned long get_tbms (void)  /* #define CONFIG_DDR_ECC_INIT_VIA_DMA */  void ddr_enable_ecc(unsigned int dram_size)  { -	volatile immap_t *immap = (immap_t *)CFG_IMMRBAR; +	volatile immap_t *immap = (immap_t *)CFG_IMMR;  	volatile ddr83xx_t *ddr= &immap->ddr;  	unsigned long t_start, t_end;  	register u64 *p; |