diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2015-11-13 01:54:17 -0300 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2015-11-30 08:43:32 -0800 |
commit | 03c84de82e817122bf51f66a34d17f0dc1061f88 (patch) | |
tree | 87b3b70318d7e8dea8db11b3cffe0eef104615c2 /arch/arm/boot | |
parent | 92245d420e76e332aa4eb37b022c367d57a93076 (diff) | |
download | talos-obmc-linux-03c84de82e817122bf51f66a34d17f0dc1061f88.tar.gz talos-obmc-linux-03c84de82e817122bf51f66a34d17f0dc1061f88.zip |
ARM: dts: omap5-uevm.dts: Use OMAP5_IOPAD pinmux macro
Use the pinmux IOPAD macros to define the register as an offset from
the padconf physical address instead of the offset from padconf base.
This makes the DTS easier to read since matches the addresses listed
in the Technical Reference Manual.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r-- | arch/arm/boot/dts/omap5-uevm.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/omap5-uevm.dts b/arch/arm/boot/dts/omap5-uevm.dts index 05b1c1ebded8..60b3fbb3bf07 100644 --- a/arch/arm/boot/dts/omap5-uevm.dts +++ b/arch/arm/boot/dts/omap5-uevm.dts @@ -40,8 +40,8 @@ &omap5_pmx_core { i2c5_pins: pinmux_i2c5_pins { pinctrl-single,pins = < - 0x186 (PIN_INPUT | MUX_MODE0) /* i2c5_scl */ - 0x188 (PIN_INPUT | MUX_MODE0) /* i2c5_sda */ + OMAP5_IOPAD(0x1c6, PIN_INPUT | MUX_MODE0) /* i2c5_scl */ + OMAP5_IOPAD(0x1c8, PIN_INPUT | MUX_MODE0) /* i2c5_sda */ >; }; }; |