diff options
author | H. Nikolaus Schaller <[email protected]> | 2020-10-03 16:10:00 +0200 |
---|---|---|
committer | Tony Lindgren <[email protected]> | 2020-11-10 15:14:36 +0200 |
commit | df9dbaf2c415cd94ad520067a1eccfee62f00a33 (patch) | |
tree | ff7a730790042836cce4ce98727fc5db16a40b8a | |
parent | 3650b228f83adda7e5ee532e2b90429c03f7b9ec (diff) |
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: [email protected]
Signed-off-by: H. Nikolaus Schaller <[email protected]>
Signed-off-by: Tony Lindgren <[email protected]>
-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 */ >; }; }; |