summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Collyer <scollyer@google.com>2022-08-15 12:25:43 -0700
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-08-16 19:31:23 +0000
commit444ba6ffc35fb6f0a2d1a26594a33f15f12c8563 (patch)
tree2b810fa9cd6f30898f3327af3ce81d8a71bc3355
parent7523f099fc2efef7b7303ea80a6c369e3b39f8e4 (diff)
downloadchrome-ec-444ba6ffc35fb6f0a2d1a26594a33f15f12c8563.tar.gz
rex: Correct the I2C device address for tcpc_port0
This CL corrects the I2C address for the port 0 TCPC. It was set to 0x73, but that's for address pin being pulled up high, and the address pin instead is tied low. BRANCH=none BUG=b:240434243 TEST=zmake build rex Signed-off-by: Scott Collyer <scollyer@google.com> Change-Id: I9ed5713bfe355c9fcd769fe0f75ae99b43cacb61 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3830285 Reviewed-by: Madhu P <mparuchuri@google.com> Reviewed-by: Fabio Baltieri <fabiobaltieri@google.com> Commit-Queue: Scott Collyer <scollyer@chromium.org> Tested-by: Scott Collyer <scollyer@chromium.org>
-rw-r--r--zephyr/projects/rex/rex.dts4
1 files changed, 2 insertions, 2 deletions
diff --git a/zephyr/projects/rex/rex.dts b/zephyr/projects/rex/rex.dts
index 125b754dcb..2760bdc585 100644
--- a/zephyr/projects/rex/rex.dts
+++ b/zephyr/projects/rex/rex.dts
@@ -68,10 +68,10 @@
irq = <&int_usb_c0_bc12>;
};
- tcpc_port0: nct38xx@73 {
+ tcpc_port0: nct38xx@70 {
compatible = "nuvoton,nct38xx";
gpio-dev = <&nct3807_C0>;
- reg = <0x73>;
+ reg = <0x70>;
tcpc-flags = <(TCPC_FLAGS_TCPCI_REV2_0)>;
};