浏览代码

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: Olof Johansson <olof@lixom.net>
Olof Johansson 6 年之前
父节点
当前提交
d9536e8098
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      arch/arm/boot/dts/bcm2837-rpi-3-b-plus.dts
  2. 1 1
      arch/arm/boot/dts/bcm2837-rpi-3-b.dts

+ 1 - 1
arch/arm/boot/dts/bcm2837-rpi-3-b-plus.dts

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

+ 1 - 1
arch/arm/boot/dts/bcm2837-rpi-3-b.dts

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