summaryrefslogtreecommitdiff
path: root/util/comm-dev.c
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2013-11-01 11:39:00 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2013-11-04 19:48:49 +0000
commitc1e02ca2203a7889539a88570e142f16cfd265a8 (patch)
treed5179376c575bfed91c7227e1da7d50cddbfd1b5 /util/comm-dev.c
parent2aae9d678a500cab94ad7f0747940de9e01d8a6e (diff)
downloadchrome-ec-c1e02ca2203a7889539a88570e142f16cfd265a8.tar.gz
cleanup: Yes, even more TODO comments
Almost done. Comment changes only. BUG=chrome-os-partner:18343 BRANCH=none TEST=build all platforms Change-Id: I974dfc12aa264e2035b3bae35a089c19344e7d45 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/175484 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
Diffstat (limited to 'util/comm-dev.c')
-rw-r--r--util/comm-dev.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/comm-dev.c b/util/comm-dev.c
index 1175f92555..eb3a4f9b47 100644
--- a/util/comm-dev.c
+++ b/util/comm-dev.c
@@ -108,11 +108,11 @@ int comm_init_dev(void)
ec_readmem = ec_readmem_dev;
/*
- * TODO: need a way to get this from the driver and EC. For now,
- * pick a magic lowest common denominator value. The ec_max_outsize
- * is set to handle v3 EC protocol. The ec_max_insize needs to be
- * set to the largest value that can be returned from the EC,
- * EC_PROTO2_MAX_PARAM_SIZE.
+ * TODO(crosbug.com/p/23823): Need a way to get this from the driver
+ * and EC. For now, pick a magic lowest common denominator value. The
+ * ec_max_outsize is set to handle v3 EC protocol. The ec_max_insize
+ * needs to be set to the largest value that can be returned from the
+ * EC, EC_PROTO2_MAX_PARAM_SIZE.
*/
ec_max_outsize = EC_PROTO2_MAX_PARAM_SIZE - 8;
ec_max_insize = EC_PROTO2_MAX_PARAM_SIZE;