Commit d9536e80 authored by Olof Johansson's avatar Olof Johansson
Browse files

Merge tag 'arm-soc/for-4.20/devicetree-fixes' of https://github.com/Broadcom/stblinux into fixes

This pull request contains Broadcom ARM-based SoCs Device Tree fixes,
please pull the following for 4.20:

- Stefan fixes the polariy of the Wi-Fi reset GPIOs signals which would
  break on Raspberry Pi 3B and 3B+

* tag 'arm-soc/for-4.20/devicetree-fixes' of https://github.com/Broadcom/stblinux

:
  ARM: dts: bcm2837: Fix polarity of wifi reset GPIOs

Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parents f3b2f758 e25b6783
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@

	wifi_pwrseq: wifi-pwrseq {
		compatible = "mmc-pwrseq-simple";
		reset-gpios = <&expgpio 1 GPIO_ACTIVE_HIGH>;
		reset-gpios = <&expgpio 1 GPIO_ACTIVE_LOW>;
	};
};

+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@

	wifi_pwrseq: wifi-pwrseq {
		compatible = "mmc-pwrseq-simple";
		reset-gpios = <&expgpio 1 GPIO_ACTIVE_HIGH>;
		reset-gpios = <&expgpio 1 GPIO_ACTIVE_LOW>;
	};
};