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

Commit 794ccda6 authored by Pavel Roskin's avatar Pavel Roskin Committed by John W. Linville
Browse files

[PATCH] spectrum_cs: Fix incorrect use of pcmcia_dev_present()



This bug was introduced during the PCMCIA API conversion and broke
spectrum_cs completely.

Tracked down by Fredrik Tolf <fredrik@dolda2000.com>

Signed-off-by: default avatarPavel Roskin <proski@gnu.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent ef7d1b24
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ spectrum_reset(struct pcmcia_device *link, int idle)
	u_int save_cor;

	/* Doing it if hardware is gone is guaranteed crash */
	if (pcmcia_dev_present(link))
	if (!pcmcia_dev_present(link))
		return -ENODEV;

	/* Save original COR value */