summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2016-08-24 14:03:41 -0700
committerchrome-bot <chrome-bot@chromium.org>2016-08-25 21:59:20 -0700
commit011416d4693aa90a2d291e81d72d2674367500ad (patch)
tree699414b4ce3048fcaab81d14eb005e8df1e9f597
parent98ec487dff024808927c05b13bfc520893cf1437 (diff)
downloadchrome-ec-stabilize-8743.58.B.tar.gz
The console command "sleepmask" refers to another, nonexistant command, "dsleepmask". We shouldn't refer people to look for things that don't exist. BUG=none BRANCH=none TEST=make buildall Before: > help sleepmask Usage: sleepmask [ on | off | <sleep_mask>] Display/force sleep mask. See also 'dsleepmask'. > After: > help sleepmask Usage: sleepmask [ on | off | <sleep_mask>] Display/force sleep mask > Change-Id: Ia95b48fc1e27315895e431b88ab39179a08d34cf Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/376078 Reviewed-by: Vadim Bendebury <vbendeb@chromium.org>
-rw-r--r--common/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/system.c b/common/system.c
index 21458a432f..2116f8083d 100644
--- a/common/system.c
+++ b/common/system.c
@@ -1110,7 +1110,7 @@ static int command_sleepmask(int argc, char **argv)
}
DECLARE_CONSOLE_COMMAND(sleepmask, command_sleepmask,
"[ on | off | <sleep_mask>]",
- "Display/force sleep mask.\nSee also 'dsleepmask'.");
+ "Display/force sleep mask");
#endif
#ifdef CONFIG_CMD_JUMPTAGS