diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-10-04 12:15:28 -0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2013-10-06 07:53:22 -0400 |
commit | ecccab3c5f84f7377bd09c094faa8cafa48dc55d (patch) | |
tree | 2863561c192c9a3dcbc6347cb5fc15381f8d0ef4 | |
parent | 71686dda2b14e5afca013f7d61653ea155e1e390 (diff) |
ARM: dts: imx53-qsb: Do not use GPIO1_8 as wakeup source
On the mx53qsb board with mc34708 PMIC, GPIO1_8 resets the system, so better not
to use it as a wakeup source.
Use GPIO 2_14 and 2_15 for wakeup sources instead.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
-rw-r--r-- | arch/arm/boot/dts/imx53-qsb.dts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/imx53-qsb.dts b/arch/arm/boot/dts/imx53-qsb.dts index 029ae42357fb..91a5935a4aac 100644 --- a/arch/arm/boot/dts/imx53-qsb.dts +++ b/arch/arm/boot/dts/imx53-qsb.dts | |||
@@ -55,19 +55,20 @@ | |||
55 | label = "Power Button"; | 55 | label = "Power Button"; |
56 | gpios = <&gpio1 8 0>; | 56 | gpios = <&gpio1 8 0>; |
57 | linux,code = <116>; /* KEY_POWER */ | 57 | linux,code = <116>; /* KEY_POWER */ |
58 | gpio-key,wakeup; | ||
59 | }; | 58 | }; |
60 | 59 | ||
61 | volume-up { | 60 | volume-up { |
62 | label = "Volume Up"; | 61 | label = "Volume Up"; |
63 | gpios = <&gpio2 14 0>; | 62 | gpios = <&gpio2 14 0>; |
64 | linux,code = <115>; /* KEY_VOLUMEUP */ | 63 | linux,code = <115>; /* KEY_VOLUMEUP */ |
64 | gpio-key,wakeup; | ||
65 | }; | 65 | }; |
66 | 66 | ||
67 | volume-down { | 67 | volume-down { |
68 | label = "Volume Down"; | 68 | label = "Volume Down"; |
69 | gpios = <&gpio2 15 0>; | 69 | gpios = <&gpio2 15 0>; |
70 | linux,code = <114>; /* KEY_VOLUMEDOWN */ | 70 | linux,code = <114>; /* KEY_VOLUMEDOWN */ |
71 | gpio-key,wakeup; | ||
71 | }; | 72 | }; |
72 | }; | 73 | }; |
73 | 74 | ||