summaryrefslogtreecommitdiff
path: root/boards
diff options
context:
space:
mode:
authorMaureen Helm <maureen.helm@nxp.com>2017-01-07 10:48:08 -0600
committerKumar Gala <kumar.gala@linaro.org>2017-01-12 09:46:27 -0600
commitb4254444a8bb158e3f8714fcd294d8efc0128e04 (patch)
tree5adf9548af34a35143d72a43930564170e52b428 /boards
parent4184c7f82eb1e43741f348433132d0d232f5a0cb (diff)
hexiwear_k64: Fix i2c pinmux settings
The hexiwear_k64 i2c pinmux settings were copied over incorrectly when the new mcux pinmux driver was created. Change-Id: I72e5f8f7c06e2d9b08921109691edaf311f3811b Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
Diffstat (limited to 'boards')
-rw-r--r--boards/arm/hexiwear_k64/pinmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/boards/arm/hexiwear_k64/pinmux.c b/boards/arm/hexiwear_k64/pinmux.c
index 78bf94135..3da43b142 100644
--- a/boards/arm/hexiwear_k64/pinmux.c
+++ b/boards/arm/hexiwear_k64/pinmux.c
@@ -50,9 +50,9 @@ static int hexiwear_k64_pinmux_init(struct device *dev)
#if CONFIG_I2C_1
/* I2C1 SCL, SDA - accel/mag, gyro, pressure */
- pinmux_pin_set(portc, 10, PORT_PCR_MUX(kPORT_MuxAlt5)
+ pinmux_pin_set(portc, 10, PORT_PCR_MUX(kPORT_MuxAlt2)
| PORT_PCR_ODE_MASK);
- pinmux_pin_set(portc, 11, PORT_PCR_MUX(kPORT_MuxAlt5)
+ pinmux_pin_set(portc, 11, PORT_PCR_MUX(kPORT_MuxAlt2)
| PORT_PCR_ODE_MASK);
#endif
/* FXOS8700 INT1 */