Browse Source

[ARM] 5442/1: pxa/cm-x255: fix reverse RDY gpios in PCMCIA driver

fix reverse RDY gpios in PCMCIA driver

Signed-off-by: Mike Rapoport <mike@compulab.co.il>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Mike Rapoport 16 years ago
parent
commit
91c39dcb73
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/pcmcia/pxa2xx_cm_x255.c

+ 1 - 1
drivers/pcmcia/pxa2xx_cm_x255.c

@@ -63,7 +63,7 @@ static void cmx255_pcmcia_socket_state(struct soc_pcmcia_socket *skt,
 				       struct pcmcia_state *state)
 				       struct pcmcia_state *state)
 {
 {
 	int cd = skt->nr ? GPIO_PCMCIA_S1_CD_VALID : GPIO_PCMCIA_S0_CD_VALID;
 	int cd = skt->nr ? GPIO_PCMCIA_S1_CD_VALID : GPIO_PCMCIA_S0_CD_VALID;
-	int rdy = skt->nr ? GPIO_PCMCIA_S0_RDYINT : GPIO_PCMCIA_S1_RDYINT;
+	int rdy = skt->nr ? GPIO_PCMCIA_S1_RDYINT : GPIO_PCMCIA_S0_RDYINT;
 
 
 	state->detect = !gpio_get_value(cd);
 	state->detect = !gpio_get_value(cd);
 	state->ready  = !!gpio_get_value(rdy);
 	state->ready  = !!gpio_get_value(rdy);