diff options
author | H. Nikolaus Schaller <hns@goldelico.com> | 2020-10-03 16:10:00 +0200 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2020-11-10 14:14:36 +0100 |
commit | df9dbaf2c415cd94ad520067a1eccfee62f00a33 (patch) | |
tree | ff7a730790042836cce4ce98727fc5db16a40b8a | |
parent | Linux 5.10-rc1 (diff) | |
download | linux-df9dbaf2c415cd94ad520067a1eccfee62f00a33.tar.xz linux-df9dbaf2c415cd94ad520067a1eccfee62f00a33.zip |
ARM: dts: pandaboard: fix pinmux for gpio user button of Pandaboard ES
The pinmux control register offset passed to OMAP4_IOPAD is odd.
Fixes: ab9a13665e7c ("ARM: dts: pandaboard: add gpio user button")
Cc: stable@vger.kernel.org
Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r-- | arch/arm/boot/dts/omap4-panda-es.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/omap4-panda-es.dts b/arch/arm/boot/dts/omap4-panda-es.dts index cfa85aa3da08..6afa8fd7c412 100644 --- a/arch/arm/boot/dts/omap4-panda-es.dts +++ b/arch/arm/boot/dts/omap4-panda-es.dts @@ -46,7 +46,7 @@ button_pins: pinmux_button_pins { pinctrl-single,pins = < - OMAP4_IOPAD(0x11b, PIN_INPUT_PULLUP | MUX_MODE3) /* gpio_113 */ + OMAP4_IOPAD(0x0fc, PIN_INPUT_PULLUP | MUX_MODE3) /* gpio_113 */ >; }; }; |