summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaveh Jalali <caveh@chromium.org>2022-08-26 17:56:26 -0700
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-08-29 20:52:24 +0000
commit70007000fc12990d464062983b12c44c51919595 (patch)
treeaa19dbf919682bc8b89699324c42305aa6ed4e5d
parentf535e7841593f2ac5fd61b5431416097d2728f27 (diff)
downloadchrome-ec-70007000fc12990d464062983b12c44c51919595.tar.gz
tcpm/nct38xx: Fix typo in comment
This fixes a typo in a comment. BUG=none BRANCH=none TEST=buildall passes Change-Id: Id9370e09e32a7d9cb2ed06899a4341ef96d4ac95 Signed-off-by: Caveh Jalali <caveh@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3859100 Code-Coverage: Zoss <zoss-cl-coverage@prod.google.com> Reviewed-by: Boris Mittelberg <bmbm@google.com>
-rw-r--r--driver/tcpm/nct38xx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/driver/tcpm/nct38xx.c b/driver/tcpm/nct38xx.c
index e01537d518..09de615eb4 100644
--- a/driver/tcpm/nct38xx.c
+++ b/driver/tcpm/nct38xx.c
@@ -276,9 +276,9 @@ static void nct38xx_tcpc_alert(int port)
* The nct38xx exits Idle mode when ALERT is signaled, so there
* is no need to run the TCPM LPM exit code to check the ALERT
* register bits (Ref. NCT38n7/8 Datasheet S 2.3.4 "Setting the
- * I2C to * Idle"). In fact, running the TCPM LPM exit code
- * causes a new CC Status ALERT which has the effect of creating
- * a new ALERT as a side-effect of handing an ALERT.
+ * I2C to Idle"). In fact, running the TCPM LPM exit code causes
+ * a new CC Status ALERT which has the effect of creating a new
+ * ALERT as a side-effect of handing an ALERT.
*/
rv = tcpc_read_alert_no_lpm_exit(port, &alert);
if (rv == EC_SUCCESS && alert == TCPC_REG_ALERT_NONE) {