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

Commit 26d49fe7 authored by Robert Jarzmik's avatar Robert Jarzmik Committed by Ulf Hansson
Browse files

mmc: pxamci: fix read-only gpio detection polarity



The commit converting pxamci to slot-gpio API inverted the logic of the
read-only gpio. Fix it by inverting the logic again.

Fixes: fd546ee6 ("mmc: pxamci: fix card detect with slot-gpio API")
Signed-off-by: default avatarRobert Jarzmik <robert.jarzmik@free.fr>
Cc: stable@vger.kernel.org
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent ce5c2d2c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -805,7 +805,7 @@ static int pxamci_probe(struct platform_device *pdev)
		goto out;
	} else {
		mmc->caps |= host->pdata->gpio_card_ro_invert ?
			MMC_CAP2_RO_ACTIVE_HIGH : 0;
			0 : MMC_CAP2_RO_ACTIVE_HIGH;
	}

	if (gpio_is_valid(gpio_cd))