Skip to content
Snippets Groups Projects
Commit 85dafbb8 authored by Fabio Estevam's avatar Fabio Estevam Committed by Stefano Babic
Browse files

common: cmd_sata: Fix usage text for 'sata init'


Currently sata usage text prints a double 'sata' for the init command.

MX53LOCO U-Boot > sata
sata - SATA sub system

Usage:
sata sata init - init SATA sub system
sata info - show available SATA devices
sata device [dev] - show or set current device
sata part [dev] - print partition table
sata read addr blk# cnt
sata write addr blk# cnt

Remove the extra 'sata' from the 'sata init' line.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
parent 9cd9b34d
No related branches found
No related tags found
No related merge requests found
......@@ -196,7 +196,7 @@ static int do_sata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
U_BOOT_CMD(
sata, 5, 1, do_sata,
"SATA sub system",
"sata init - init SATA sub system\n"
"init - init SATA sub system\n"
"sata info - show available SATA devices\n"
"sata device [dev] - show or set current device\n"
"sata part [dev] - print partition table\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment