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

Commit c5ab964d authored by Richard Purdie's avatar Richard Purdie Committed by Jeff Garzik
Browse files

[PATCH] spectrum_cs: Fix firmware uploading errors



spectrum_cs: Fix the logic so we error when the device is *not* present!

This fixes firmware upload failures which prevent the driver from
working (the bug is also present in 2.6.17).

Signed-off-by: default avatarRichard Purdie <rpurdie@rpsys.net>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 8d916266
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 */