summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Collyer <scollyer@google.com>2022-08-10 12:02:16 -0700
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-08-15 09:45:32 +0000
commitc9d6fffd791d3ebd42ad73f5d259bc36db47093f (patch)
treec7ad3d3d1aa0436ae8279e3e7cd13e28cf09230b
parent5e134c2fca90476a28b7115d0e1558e2b4f06133 (diff)
downloadchrome-ec-c9d6fffd791d3ebd42ad73f5d259bc36db47093f.tar.gz
rex: Fix incorrect I2C address for charger IC
This CL fixes a bug introduced when charger support was added. There was a mismatch between the reg = <> field and the i2c address specified by the charger node. The correct addess is 0x09. BRANCH=none BUG=b:240434243 TEST=zmake build rex Signed-off-by: Scott Collyer <scollyer@google.com> Change-Id: I4bf9beee3b66df5b15f0f9a0334d08b47f1f0a40 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3823911 Tested-by: Scott Collyer <scollyer@chromium.org> Reviewed-by: Fabio Baltieri <fabiobaltieri@google.com> Commit-Queue: Fabio Baltieri <fabiobaltieri@google.com>
-rw-r--r--zephyr/projects/rex/rex.dts2
1 files changed, 1 insertions, 1 deletions
diff --git a/zephyr/projects/rex/rex.dts b/zephyr/projects/rex/rex.dts
index d99f429e16..07996a52a1 100644
--- a/zephyr/projects/rex/rex.dts
+++ b/zephyr/projects/rex/rex.dts
@@ -161,6 +161,6 @@
charger: isl9241@9 {
compatible = "intersil,isl9241";
status = "okay";
- reg = <0x73>;
+ reg = <0x09>;
};
};