Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a466ebd2 authored by Russell King's avatar Russell King
Browse files

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: default avatarRussell King <rmk+kernel@armlinux.org.uk>
parent cbd5a168
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;