diff options
author | Michael Heimpold <mhei@heimpold.de> | 2014-03-27 23:51:30 +0100 |
---|---|---|
committer | Shawn Guo <shawn.guo@freescale.com> | 2014-05-16 23:01:48 +0800 |
commit | 457c17e1aaf48a76b8be0d90283ec1ee05387616 (patch) | |
tree | 810c59829ee3a354c0243c512613b6c8b5786f4b /arch/arm/boot/dts/imx28-duckbill.dts | |
parent | 99d1d68f4d6a24e9cd77e4f712cad37e93c63234 (diff) |
ARM: dts: imx28-duckbill: use symbolic names from gpio.h
Use GPIO_ACTIVE_HIGH and GPIO_ACTIVE_LOW instead of 0 and 1.
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Acked-by: Stefan Wahren <stefan.wahren@i2se.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
Diffstat (limited to 'arch/arm/boot/dts/imx28-duckbill.dts')
-rw-r--r-- | arch/arm/boot/dts/imx28-duckbill.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/imx28-duckbill.dts b/arch/arm/boot/dts/imx28-duckbill.dts index 91c1a9a59c5..ce1a7effba3 100644 --- a/arch/arm/boot/dts/imx28-duckbill.dts +++ b/arch/arm/boot/dts/imx28-duckbill.dts @@ -110,12 +110,12 @@ status { label = "duckbill:green:status"; - gpios = <&gpio3 5 0>; + gpios = <&gpio3 5 GPIO_ACTIVE_HIGH>; }; failure { label = "duckbill:red:status"; - gpios = <&gpio3 4 0>; + gpios = <&gpio3 4 GPIO_ACTIVE_HIGH>; }; }; }; |