]> git.sur5r.net Git - u-boot/blobdiff - drivers/tqm8xx_pcmcia.c
[PATCH] Clean up Katmai (440SPe) linker script
[u-boot] / drivers / tqm8xx_pcmcia.c
index 8d4a85c21f7679b69e173fa963c0421b8b4fabfd..a0f53cd6841a21c7c22a37da5d908ffbcfc43308 100644 (file)
@@ -3,7 +3,9 @@
 /* SC8xx   Boards by SinoVee Microsystems                              */
 /* -------------------------------------------------------------------- */
 #include <common.h>
+#ifdef CONFIG_8xx
 #include <mpc8xx.h>
+#endif
 #include <pcmcia.h>
 
 #undef CONFIG_PCMCIA
@@ -191,7 +193,7 @@ int pcmcia_hardware_enable(int slot)
        udelay(10000);
        debug ("[%d] %s: PIPR(%p)=0x%x\n", __LINE__,__FUNCTION__,
               &(pcmp->pcmc_pipr),pcmp->pcmc_pipr);
-       
+
        if (check_card_is_absent(slot)) {
                printf ("   No Card found\n");
                return (1);
@@ -206,7 +208,7 @@ int pcmcia_hardware_enable(int slot)
               reg,
               (reg&PCMCIA_VS1(slot))?"n":"ff",
               (reg&PCMCIA_VS2(slot))?"n":"ff");
-       
+
        if ((reg & mask) == mask) {
                power_on_5_0(slot);
                puts (" 5.0V card found: ");
@@ -228,7 +230,7 @@ int pcmcia_hardware_enable(int slot)
        reg &= ~__MY_PCMCIA_GCRX_CXRESET;       /* active high */
        reg |= __MY_PCMCIA_GCRX_CXOE;           /* active low  */
        reg &= ~NSCU_GCRX_CXOE;
-       
+
        PCMCIA_PGCRX(slot) = reg;
 
        udelay(250000); /* some cards need >150 ms to come up :-( */
@@ -242,8 +244,6 @@ int pcmcia_hardware_enable(int slot)
 #if (CONFIG_COMMANDS & CFG_CMD_PCMCIA)
 int pcmcia_hardware_disable(int slot)
 {
-       volatile pcmconf8xx_t *pcmp =
-               (pcmconf8xx_t *)(&(((immap_t *)CFG_IMMR)->im_pcmcia));
        u_long reg;
 
        debug ("hardware_disable: " PCMCIA_BOARD_MSG " Slot %c\n", 'A'+slot);
@@ -268,9 +268,11 @@ int pcmcia_hardware_disable(int slot)
 int pcmcia_voltage_set(int slot, int vcc, int vpp)
 {
 #ifndef CONFIG_NSCU
+       u_long reg;
+# ifdef DEBUG
        volatile pcmconf8xx_t *pcmp =
                (pcmconf8xx_t *)(&(((immap_t *)CFG_IMMR)->im_pcmcia));
-       u_long reg;
+# endif
 
        debug ("voltage_set: " PCMCIA_BOARD_MSG
                " Slot %c, Vcc=%d.%d, Vpp=%d.%d\n",
@@ -285,7 +287,7 @@ int pcmcia_voltage_set(int slot, int vcc, int vpp)
        reg |= __MY_PCMCIA_GCRX_CXRESET;        /* active high */
        reg &= ~__MY_PCMCIA_GCRX_CXOE;          /* active low  */
        reg |= NSCU_GCRX_CXOE;                  /* active low  */
-       
+
        PCMCIA_PGCRX(slot) = reg;
        udelay(500);