summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2013-10-24 15:50:53 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2013-10-25 01:32:31 +0000
commitc0fbbaefed2b82bacf4a202cda529658b5d6d058 (patch)
treeac02af96277f61e4e5fafad65cb9d49c16297829 /util
parent870b7ebb788edd1adba70a330d6b0f8c66439849 (diff)
downloadchrome-ec-c0fbbaefed2b82bacf4a202cda529658b5d6d058.tar.gz
cleanup: comments in i2c modules
No code changes; just update comments with bug links BUG=none BRANCH=none TEST=build all platforms Change-Id: I8b845f9c43315b7db5a746a16c6618c3ee96979d Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/174614 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
Diffstat (limited to 'util')
-rw-r--r--util/ectool.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/util/ectool.c b/util/ectool.c
index 168068635f..382dd556a6 100644
--- a/util/ectool.c
+++ b/util/ectool.c
@@ -2359,7 +2359,8 @@ int cmd_i2c_read(int argc, char *argv[])
}
/*
- * TODO: use I2C_XFER command if supported, then fall back to I2C_READ
+ * TODO(crosbug.com/p/23570): use I2C_XFER command if supported, then
+ * fall back to I2C_READ.
*/
rv = ec_command(EC_CMD_I2C_READ, 0, &p, sizeof(p), &r, sizeof(r));
@@ -2417,7 +2418,8 @@ int cmd_i2c_write(int argc, char *argv[])
}
/*
- * TODO: use I2C_XFER command if supported, then fall back to I2C_WRITE
+ * TODO(crosbug.com/p/23570): use I2C_XFER command if supported, then
+ * fall back to I2C_WRITE.
*/
rv = ec_command(EC_CMD_I2C_WRITE, 0, &p, sizeof(p), NULL, 0);