diff options
author | Bill Richardson <wfrichar@chromium.org> | 2016-08-24 14:03:41 -0700 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2016-08-25 21:59:20 -0700 |
commit | 011416d4693aa90a2d291e81d72d2674367500ad (patch) | |
tree | 699414b4ce3048fcaab81d14eb005e8df1e9f597 /common/system.c | |
parent | 98ec487dff024808927c05b13bfc520893cf1437 (diff) | |
download | chrome-ec-stabilize-8743.60.B.tar.gz |
cleanup: Fix console help for sleepmask commandstabilize-8743.69.Bstabilize-8743.60.Bstabilize-8743.58.Bstabilize-8743.25.Brelease-R54-8743.B
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>
Diffstat (limited to 'common/system.c')
-rw-r--r-- | common/system.c | 2 |
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 |