summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJett Rink <jettrink@chromium.org>2018-07-02 13:21:42 -0600
committerchrome-bot <chrome-bot@chromium.org>2018-07-03 18:18:21 -0700
commit9431a997aaa195e81d3e1a96ef484dcbcfa9803f (patch)
tree0e0d263f091a6c8c92f52cc381cecbfc14b73158
parent9520460224e391bb747149bcc14da0d155088d83 (diff)
downloadchrome-ec-9431a997aaa195e81d3e1a96ef484dcbcfa9803f.tar.gz
cleanup: remove incorrect comment
The chip field maps to the PD port id and should not always be 0. BRANCH=none BUG=none TEST=none Change-Id: I271ca8ed22b8f1c640a2aa97d41547ac07162fe9 Signed-off-by: Jett Rink <jettrink@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1123313 Reviewed-by: Raul E Rangel <rrangel@chromium.org>
-rw-r--r--include/ec_commands.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ec_commands.h b/include/ec_commands.h
index 6d49fb395a..3379fd7441 100644
--- a/include/ec_commands.h
+++ b/include/ec_commands.h
@@ -4680,7 +4680,7 @@ enum ec_pd_control_cmd {
};
struct __ec_align1 ec_params_pd_control {
- uint8_t chip; /* chip id (should be 0) */
+ uint8_t chip; /* chip id */
uint8_t subcmd;
};