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

Commit 102ca26a authored by Thierry Reding's avatar Thierry Reding
Browse files

arm64: tegra: Fix SD write-protect polarity on Jetson TX2



The write-protect GPIO has an active high polarity.

Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 2fdb74fe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@
	/* SDMMC1 (SD/MMC) */
	sdhci@3400000 {
		cd-gpios = <&gpio TEGRA_MAIN_GPIO(P, 5) GPIO_ACTIVE_LOW>;
		wp-gpios = <&gpio TEGRA_MAIN_GPIO(P, 4) GPIO_ACTIVE_LOW>;
		wp-gpios = <&gpio TEGRA_MAIN_GPIO(P, 4) GPIO_ACTIVE_HIGH>;

		vqmmc-supply = <&vddio_sdmmc1>;
	};