From 807d8aa87bcc5da1ff9153d4f891f78c19efd514 Mon Sep 17 00:00:00 2001 From: Ryan Holleran Date: Fri, 30 Oct 2020 18:36:38 -0500 Subject: [PATCH] boards: frdm_k22f: Correct FXOS8700 i2c address The address in NXP's documentation shows that 0x1c is the addressfor the FXOS8700. Signed-off-by: Ryan Holleran --- boards/arm/frdm_k22f/frdm_k22f.dts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boards/arm/frdm_k22f/frdm_k22f.dts b/boards/arm/frdm_k22f/frdm_k22f.dts index 5bee2427eee..904823da905 100644 --- a/boards/arm/frdm_k22f/frdm_k22f.dts +++ b/boards/arm/frdm_k22f/frdm_k22f.dts @@ -99,9 +99,9 @@ &i2c0 { status = "okay"; - fxos8700@1d { + fxos8700@1c { compatible = "nxp,fxos8700"; - reg = <0x1d>; + reg = <0x1c>; label = "FXOS8700"; int1-gpios = <&gpiod 0 GPIO_ACTIVE_LOW>; int2-gpios = <&gpiod 1 GPIO_ACTIVE_LOW>;