]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ARM: dts: imx23-sansa: Remove 'enable-active-low' property
authorFabio Estevam <fabio.estevam@nxp.com>
Tue, 23 May 2017 15:32:43 +0000 (12:32 -0300)
committerShawn Guo <shawnguo@kernel.org>
Thu, 25 May 2017 07:52:01 +0000 (15:52 +0800)
Property 'enable-active-low' does not exist. Only 'enable-active-high' is
valid, and when this property is absent the gpio regulator will act as
active low by default.

So remove the unexisting 'enable-active-low' property.

Currently the GPIO flag is 0, which means active-high. In order to make
the dts description accurate, pass the GPIO_ACTIVE_LOW flag instead.

This change is safe because the gpio regulator driver does not take the
GPIO flag polarity into account.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm/boot/dts/imx23-sansa.dts

index 4ec32f4c7885b8e8e0f03273b3321f99e4c156a7..221fd55e967efe59034166795fe24f1890bdb903 100644 (file)
@@ -42,6 +42,7 @@
  */
 
 /dts-v1/;
+#include <dt-bindings/gpio/gpio.h>
 #include "imx23.dtsi"
 
 / {
                regulator-name = "vdd-touchpad0";
                regulator-min-microvolt = <3300000>;
                regulator-max-microvolt = <3300000>;
-               gpio = <&gpio0 26 0>;
+               gpio = <&gpio0 26 GPIO_ACTIVE_LOW>;
                regulator-always-on;
-               enable-active-low;
        };
 
        reg_vdd_tuner: regulator-vdd-tuner0 {
                regulator-name = "vdd-tuner0";
                regulator-min-microvolt = <3300000>;
                regulator-max-microvolt = <3300000>;
-               gpio = <&gpio0 29 0>;
+               gpio = <&gpio0 29 GPIO_ACTIVE_LOW>;
                regulator-always-on;
-               enable-active-low;
        };
 
        backlight {