diff options
Diffstat (limited to 'board/uc100/pcmcia.c')
| -rw-r--r-- | board/uc100/pcmcia.c | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/board/uc100/pcmcia.c b/board/uc100/pcmcia.c index 407bdb73c..ad256783c 100644 --- a/board/uc100/pcmcia.c +++ b/board/uc100/pcmcia.c @@ -24,7 +24,7 @@ static void cfg_ports (void)  {  	volatile immap_t	*immap; -	immap = (immap_t *)CFG_IMMR; +	immap = (immap_t *)CONFIG_SYS_IMMR;  	/*  	* Configure Port A for MAX1602 PC-Card Power-Interface Switch @@ -49,10 +49,10 @@ int pcmcia_hardware_enable(int slot)  	udelay(10000); -	immap = (immap_t *)CFG_IMMR; -	sysp  = (sysconf8xx_t *)(&(((immap_t *)CFG_IMMR)->im_siu_conf)); -	pcmp  = (pcmconf8xx_t *)(&(((immap_t *)CFG_IMMR)->im_pcmcia)); -	cp    = (cpm8xx_t *)(&(((immap_t *)CFG_IMMR)->im_cpm)); +	immap = (immap_t *)CONFIG_SYS_IMMR; +	sysp  = (sysconf8xx_t *)(&(((immap_t *)CONFIG_SYS_IMMR)->im_siu_conf)); +	pcmp  = (pcmconf8xx_t *)(&(((immap_t *)CONFIG_SYS_IMMR)->im_pcmcia)); +	cp    = (cpm8xx_t *)(&(((immap_t *)CONFIG_SYS_IMMR)->im_cpm));  	/* Configure Ports for TPS2211A PC-Card Power-Interface Switch */  	cfg_ports (); @@ -133,8 +133,8 @@ int pcmcia_hardware_disable(int slot)  	debug ("hardware_disable: " PCMCIA_BOARD_MSG " Slot %c\n", 'A'+slot); -	immap = (immap_t *)CFG_IMMR; -	pcmp  = (pcmconf8xx_t *)(&(((immap_t *)CFG_IMMR)->im_pcmcia)); +	immap = (immap_t *)CONFIG_SYS_IMMR; +	pcmp  = (pcmconf8xx_t *)(&(((immap_t *)CONFIG_SYS_IMMR)->im_pcmcia));  	/* switch VCC off */  	immap->im_ioport.iop_padat &= ~0x8000; /* power disable 3.3V */ @@ -163,8 +163,8 @@ int pcmcia_voltage_set(int slot, int vcc, int vpp)  			" Slot %c, Vcc=%d.%d, Vpp=%d.%d\n",  	'A'+slot, vcc/10, vcc%10, vpp/10, vcc%10); -	immap = (immap_t *)CFG_IMMR; -	pcmp  = (pcmconf8xx_t *)(&(((immap_t *)CFG_IMMR)->im_pcmcia)); +	immap = (immap_t *)CONFIG_SYS_IMMR; +	pcmp  = (pcmconf8xx_t *)(&(((immap_t *)CONFIG_SYS_IMMR)->im_pcmcia));  	/*  	* Disable PCMCIA buffers (isolate the interface)  	* and assert RESET signal |