summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chip/npcx/flash.c4
-rw-r--r--common/keyboard_8042.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/chip/npcx/flash.c b/chip/npcx/flash.c
index 2274f256dc..219347e17e 100644
--- a/chip/npcx/flash.c
+++ b/chip/npcx/flash.c
@@ -769,7 +769,7 @@ static int command_flash_spi_sel_lock(int argc, char **argv)
return EC_SUCCESS;
}
DECLARE_CONSOLE_COMMAND(flash_spi_lock, command_flash_spi_sel_lock,
- "[0 | 1]",
+ "[on | off]",
"Lock spi flash interface selection");
static int command_flash_tristate(int argc, char **argv)
@@ -786,6 +786,6 @@ static int command_flash_tristate(int argc, char **argv)
return EC_SUCCESS;
}
DECLARE_CONSOLE_COMMAND(flash_tristate, command_flash_tristate,
- "[0 | 1]",
+ "[on | off]",
"Tristate spi flash pins");
#endif /* CONFIG_CMD_FLASH_TRISTATE */
diff --git a/common/keyboard_8042.c b/common/keyboard_8042.c
index 4c1fb24395..3e1836a518 100644
--- a/common/keyboard_8042.c
+++ b/common/keyboard_8042.c
@@ -1089,7 +1089,7 @@ static int command_keyboard(int argc, char **argv)
return EC_SUCCESS;
}
DECLARE_CONSOLE_COMMAND(kbd, command_keyboard,
- "[0 | 1]",
+ "[on | off]",
"Print or toggle keyboard info");