summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-12-04 18:33:07 +0300
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-12-05 19:43:21 +0300
commitff414fcc44b8b385600df54f5a7dc0719cec106f (patch)
treea505ceaf8779e22bf9a7242e389a504099405882
parent968eaaeaa7a8cf0956e19e9217af9e81bc7fb2eb (diff)
downloadu-boot-ff414fcc44b8b385600df54f5a7dc0719cec106f.tar.xz
cmd: fix long text for sound command
Make it clear that if only 1 parameter is provided this is the duration. The ISO symbol for hertz is Hz. Fixes: c0c88533fffd ("Sound: Add command for audio playback") Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--cmd/sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/sound.c b/cmd/sound.c
index f82f2aa670..20ac3f758e 100644
--- a/cmd/sound.c
+++ b/cmd/sound.c
@@ -86,5 +86,5 @@ U_BOOT_CMD(
sound, 4, 1, do_sound,
"sound sub-system",
"init - initialise the sound driver\n"
- "sound play [len] [freq] - play a sound for len ms at freq hz\n"
+ "sound play [len [freq]] - play a sound for len ms at freq Hz\n"
);