diff options
author | Stefan Wahren <stefan.wahren@i2se.com> | 2018-12-03 21:37:08 +0300 |
---|---|---|
committer | Florian Fainelli <f.fainelli@gmail.com> | 2018-12-03 22:51:26 +0300 |
commit | e25b6783c7b1bb79103d4617336879423f86b05e (patch) | |
tree | e8a862112fd577c58a566a8aa2b40240aae781be /arch/arm/boot/dts/bcm2837-rpi-3-b.dts | |
parent | 651022382c7f8da46cb4872a545ee1da6d097d2a (diff) | |
download | linux-e25b6783c7b1bb79103d4617336879423f86b05e.tar.xz |
ARM: dts: bcm2837: Fix polarity of wifi reset GPIOs
The commit b1b8f45b3130 ("ARM: dts: bcm2837: Add missing GPIOs of Expander")
introduced a wifi power sequence. Unfortunately the polarity of the reset
GPIOs were wrong and broke the wifi support on Raspberry Pi 3 B and
later in 3 B+. This wasn't discovered before since the power sequence
takes only effect in case the relevant MMC driver is compiled as a module.
Fixes: b1b8f45b3130 ("ARM: dts: bcm2837: Add missing GPIOs of Expander")
Cc: stable@vger.kernel.org
Reported-by: Matthias Lueschner <lueschem@gmail.com>
Link: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911443
Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Diffstat (limited to 'arch/arm/boot/dts/bcm2837-rpi-3-b.dts')
-rw-r--r-- | arch/arm/boot/dts/bcm2837-rpi-3-b.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/bcm2837-rpi-3-b.dts b/arch/arm/boot/dts/bcm2837-rpi-3-b.dts index c318bcbc6ba7..89e6fd547c75 100644 --- a/arch/arm/boot/dts/bcm2837-rpi-3-b.dts +++ b/arch/arm/boot/dts/bcm2837-rpi-3-b.dts @@ -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>; }; }; |