summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-05-30 16:01:06 +0000
committerJohn Crispin <john@openwrt.org>2013-05-30 16:01:06 +0000
commite60cb01c45e0f3d7172ecf0717d0e8b84170d613 (patch)
tree300d3e7bf287bb89a8d8acd8a23b6074bd4269af /target
parentc2b1e9eeef0aa5ff1f91615878f91e0fce4fdc7d (diff)
downloadmaster-31e0f0ae-e60cb01c45e0f3d7172ecf0717d0e8b84170d613.tar.gz
master-31e0f0ae-e60cb01c45e0f3d7172ecf0717d0e8b84170d613.tar.bz2
master-31e0f0ae-e60cb01c45e0f3d7172ecf0717d0e8b84170d613.zip
lantiq: ARV752DPW: fix reboot loop caused by wrong GPIO setting
The GPIO buttons of ARV752DPW are active low. Treating them as active high caused a reboot loop as a reset-button press is detected by gpio-button-hotplug/gpio-keys-polled on startup. This fixes: https://dev.openwrt.org/ticket/12642 Signed-off-by: Rafael Gieschke <rafael@gieschke.de> SVN-Revision: 36783
Diffstat (limited to 'target')
-rw-r--r--target/linux/lantiq/dts/ARV752DPW.dts6
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/lantiq/dts/ARV752DPW.dts b/target/linux/lantiq/dts/ARV752DPW.dts
index 7254f5ce73..96ac4a522d 100644
--- a/target/linux/lantiq/dts/ARV752DPW.dts
+++ b/target/linux/lantiq/dts/ARV752DPW.dts
@@ -153,17 +153,17 @@
};*/
restart {
label = "restart";
- gpios = <&gpio 12 0>;
+ gpios = <&gpio 12 1>;
linux,code = <0x110>;
};
dsl {
label = "dsl";
- gpios = <&gpio 13 0>;
+ gpios = <&gpio 13 1>;
linux,code = <0x111>;
};
reset {
label = "reset";
- gpios = <&gpio 28 0>;
+ gpios = <&gpio 28 1>;
linux,code = <0x198>;
};
};