diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2016-08-31 09:49:43 +0200 |
---|---|---|
committer | Russell King <rmk+kernel@armlinux.org.uk> | 2016-09-12 11:57:01 +0200 |
commit | a466ebd2fc6a793e55f028a008b9f094d7d30fe3 (patch) | |
tree | baa24a231b5492f8ea037b20a334a70d96747b29 | |
parent | pcmcia: sa11xx_base: add units to the timing information (diff) | |
download | linux-a466ebd2fc6a793e55f028a008b9f094d7d30fe3.tar.xz linux-a466ebd2fc6a793e55f028a008b9f094d7d30fe3.zip |
pcmcia: soc_common: fix SS_STSCHG polarity
SS_STSCHG should be set for an IO card when the BVD1 signal is asserted
low, not high.
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
-rw-r--r-- | drivers/pcmcia/soc_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pcmcia/soc_common.c b/drivers/pcmcia/soc_common.c index eed5e9c05353..d5ca760c4eb2 100644 --- a/drivers/pcmcia/soc_common.c +++ b/drivers/pcmcia/soc_common.c @@ -235,7 +235,7 @@ static unsigned int soc_common_pcmcia_skt_state(struct soc_pcmcia_socket *skt) stat |= skt->cs_state.Vcc ? SS_POWERON : 0; if (skt->cs_state.flags & SS_IOCARD) - stat |= state.bvd1 ? SS_STSCHG : 0; + stat |= state.bvd1 ? 0 : SS_STSCHG; else { if (state.bvd1 == 0) stat |= SS_BATDEAD; |