diff options
author | Mike Rapoport <mike@compulab.co.il> | 2009-04-02 05:21:29 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-04-02 06:02:32 -0400 |
commit | 91c39dcb7365ed1ff34ee9b3541304da5c942696 (patch) | |
tree | 56f8b64a26712230503c3ccb88db7cd4b50ab0d1 /drivers/pcmcia | |
parent | 7f96b1caac43b34b325ee4acf61ce57d7214409c (diff) |
[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>
Diffstat (limited to 'drivers/pcmcia')
-rw-r--r-- | drivers/pcmcia/pxa2xx_cm_x255.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pcmcia/pxa2xx_cm_x255.c b/drivers/pcmcia/pxa2xx_cm_x255.c index 4ed64d8e95e7..5143a760153b 100644 --- a/drivers/pcmcia/pxa2xx_cm_x255.c +++ b/drivers/pcmcia/pxa2xx_cm_x255.c | |||
@@ -63,7 +63,7 @@ static void cmx255_pcmcia_socket_state(struct soc_pcmcia_socket *skt, | |||
63 | struct pcmcia_state *state) | 63 | struct pcmcia_state *state) |
64 | { | 64 | { |
65 | int cd = skt->nr ? GPIO_PCMCIA_S1_CD_VALID : GPIO_PCMCIA_S0_CD_VALID; | 65 | int cd = skt->nr ? GPIO_PCMCIA_S1_CD_VALID : GPIO_PCMCIA_S0_CD_VALID; |
66 | int rdy = skt->nr ? GPIO_PCMCIA_S0_RDYINT : GPIO_PCMCIA_S1_RDYINT; | 66 | int rdy = skt->nr ? GPIO_PCMCIA_S1_RDYINT : GPIO_PCMCIA_S0_RDYINT; |
67 | 67 | ||
68 | state->detect = !gpio_get_value(cd); | 68 | state->detect = !gpio_get_value(cd); |
69 | state->ready = !!gpio_get_value(rdy); | 69 | state->ready = !!gpio_get_value(rdy); |