aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2016-02-26 08:35:35 +0000
committerJohn Crispin <blogic@openwrt.org>2016-02-26 08:35:35 +0000
commit01399bdc66c9615657e3f12b79de831c1c974063 (patch)
treee845b7d336b5fe6473ae50e42f74b42af039c37a /target
parentab51d43e3ae86b22d6ebcab90992787c03320737 (diff)
downloadmaster-187ad058-01399bdc66c9615657e3f12b79de831c1c974063.tar.gz
master-187ad058-01399bdc66c9615657e3f12b79de831c1c974063.tar.bz2
master-187ad058-01399bdc66c9615657e3f12b79de831c1c974063.zip
ramips: fix GPIO names for RT5350F-OLinuXino-EVB
Hi, the board in subject (RT5350F-OLinuXino-EVB) still ships from vendor with a RC3 image built upon a .dts file which declares GPIO12 and GPIO14 as relay2 and relay1 respectively, as you can see from their rt5350f branch on GitHub. For some reason in the official stable build both the GPIOs are swapped and the wrong names are declared in the gpio-export directive. I'm submitting this patch which should roll back the wrong changes, so that we get backward compatibility with any script developed on RC3 which controls the relays. After patching correct operation is restored: root@OpenWrt:/# cat /sys/kernel/debug/gpio GPIOs 0-21, platform/10000600.gpio, 10000600.gpio: gpio-0 (button ) in hi gpio-12 (relay2 ) out lo gpio-14 (relay1 ) out lo Thank you, Signed-off-by: Lorenzo Cafaro <lorenzo@ibisco.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48796 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/ramips/dts/RT5350F-OLINUXINO-EVB.dts8
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/ramips/dts/RT5350F-OLINUXINO-EVB.dts b/target/linux/ramips/dts/RT5350F-OLINUXINO-EVB.dts
index 8c15a7836b..8d32230533 100644
--- a/target/linux/ramips/dts/RT5350F-OLINUXINO-EVB.dts
+++ b/target/linux/ramips/dts/RT5350F-OLINUXINO-EVB.dts
@@ -83,15 +83,15 @@
#size-cells = <0>;
relay1 {
- gpio-export,name = "gpio12";
+ gpio-export,name = "relay1";
gpio-export,output = <0>;
- gpios = <&gpio0 12 0>;
+ gpios = <&gpio0 14 0>;
};
relay2 {
- gpio-export,name = "gpio14";
+ gpio-export,name = "relay2";
gpio-export,output = <0>;
- gpios = <&gpio0 14 0>;
+ gpios = <&gpio0 12 0>;
};
button {