summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJett Rink <jettrink@chromium.org>2019-05-10 08:11:03 -0600
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2019-05-13 17:51:27 +0000
commiteb4c7b02a0767f57168f2cb3959feb8d0be03ace (patch)
tree19783283fd645c6fb1158cea0109f8c173df318a
parent279c513865ebbd3bd860fd4be83d0827566de1df (diff)
downloadchrome-ec-eb4c7b02a0767f57168f2cb3959feb8d0be03ace.tar.gz
cleanup: fix cros_sh to cros_ish typo
Update command line usage help string for ectool to specify cros_ish instead of cros_sh. BRANCH=none BUG=none TEST=see usage string update Change-Id: I52f36b88598af980788eec8a1ed15160ba0f1175 Signed-off-by: Jett Rink <jettrink@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1605219 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1609610
-rw-r--r--util/ectool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/ectool.c b/util/ectool.c
index 1717ae1850..02af5f42cd 100644
--- a/util/ectool.c
+++ b/util/ectool.c
@@ -333,7 +333,7 @@ int parse_bool(const char *s, int *dest)
void print_help(const char *prog, int print_cmds)
{
printf("Usage: %s [--dev=n] [--interface=dev|i2c|lpc] ", prog);
- printf("[--name=cros_ec|cros_fp|cros_pd|cros_scp|cros_sh] [--ascii] ");
+ printf("[--name=cros_ec|cros_fp|cros_pd|cros_scp|cros_ish] [--ascii] ");
printf("<command> [params]\n\n");
if (print_cmds)
puts(help_str);