diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2021-03-24 11:09:27 +0100 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2021-03-29 18:23:25 +0200 |
commit | 483cc69fef80c1a6d0309e91a797214037bb83e3 (patch) | |
tree | 2004c0014fb6041688e372e8b6b7369d949f2918 /target/linux/bmips | |
parent | 0096a8df6f2080b10590b8d40db9d782ab790798 (diff) | |
download | upstream-483cc69fef80c1a6d0309e91a797214037bb83e3.tar.gz upstream-483cc69fef80c1a6d0309e91a797214037bb83e3.tar.bz2 upstream-483cc69fef80c1a6d0309e91a797214037bb83e3.zip |
bmips: dgnd3700-v2: fix gpio keys
These GPIO keys were assigned to incorrect pins.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'target/linux/bmips')
-rw-r--r-- | target/linux/bmips/dts/bcm6362-netgear-dgnd3700-v2.dts | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/target/linux/bmips/dts/bcm6362-netgear-dgnd3700-v2.dts b/target/linux/bmips/dts/bcm6362-netgear-dgnd3700-v2.dts index 3ad37fed71..52000ba487 100644 --- a/target/linux/bmips/dts/bcm6362-netgear-dgnd3700-v2.dts +++ b/target/linux/bmips/dts/bcm6362-netgear-dgnd3700-v2.dts @@ -21,26 +21,26 @@ compatible = "gpio-keys-polled"; poll-interval = <20>; - reset { - label = "reset"; - gpios = <&pinctrl 24 GPIO_ACTIVE_LOW>; - linux,code = <KEY_RESTART>; - debounce-interval = <60>; - }; - wlan { label = "wlan"; - gpios = <&pinctrl 25 GPIO_ACTIVE_LOW>; + gpios = <&pinctrl 11 GPIO_ACTIVE_LOW>; linux,code = <KEY_WLAN>; debounce-interval = <60>; }; wps { label = "wps"; - gpios = <&pinctrl 26 GPIO_ACTIVE_LOW>; + gpios = <&pinctrl 25 GPIO_ACTIVE_LOW>; linux,code = <KEY_WPS_BUTTON>; debounce-interval = <60>; }; + + reset { + label = "reset"; + gpios = <&pinctrl 31 GPIO_ACTIVE_LOW>; + linux,code = <KEY_RESTART>; + debounce-interval = <60>; + }; }; leds { |