summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Rosenthal <jrosenth@chromium.org>2019-02-25 09:44:22 -0700
committerchrome-bot <chrome-bot@chromium.org>2019-03-01 01:09:06 -0800
commit6b63d866effc09a1e61bcf4e9d8413ac11c27fa8 (patch)
tree221b2f19199b638db0b7201de16d6e219877eb47
parente56fb445930f50ab46d263c0459ce1612eaf9e9e (diff)
downloadchrome-ec-6b63d866effc09a1e61bcf4e9d8413ac11c27fa8.tar.gz
ec: typo corrections
This corrects a typo reported by a user. (counnect -> connect) As well, another typo in a comment. (detays -> delays). Thanks dnojiri@ BUG=chromium:731005 BRANCH=none TEST=Manually verified the change did not break build Change-Id: Ie9be8cdee1b847c9a2fd5aa9a924e7b4e35f8230 Signed-off-by: Jack Rosenthal <jrosenth@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1487011 Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-by: Raul E Rangel <rrangel@chromium.org> Reviewed-by: Jett Rink <jettrink@chromium.org>
-rw-r--r--util/ec_sb_firmware_update.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/ec_sb_firmware_update.c b/util/ec_sb_firmware_update.c
index 09067b6928..a34abe51dd 100644
--- a/util/ec_sb_firmware_update.c
+++ b/util/ec_sb_firmware_update.c
@@ -469,7 +469,7 @@ static enum fw_update_state s1_read_battery_info(
if (!(fw_update->flags & F_AC_PRESENT)) {
fw_update->rv = 0;
log_msg(fw_update, S1_READ_INFO,
- "Require AC Adapter Counnected.");
+ "Require AC Adapter Connected.");
return S10_TERMINAL;
}
@@ -583,7 +583,7 @@ static enum fw_update_state s6_write_block(struct fw_update_ctrl *fw_update)
}
/*
- * Add more detays after the last a few block (3) writes.
+ * Add more delays after the last few (3) block writes.
* 3 is chosen based on current test results.
*/
if ((offset + 3*fw_update->step_size) >= fw_update->size)