diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-02-20 14:35:35 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-02-23 11:18:24 +0100 |
commit | 85dafbb8bfe4144f346f4a76771fb690905a1e02 (patch) | |
tree | 42620a42de5a4910b899f3ae95e661c6d359efea /common | |
parent | 9cd9b34dc7f247fd0fce08ab688bf8197f1bfdbc (diff) | |
download | u-boot-imx-85dafbb8bfe4144f346f4a76771fb690905a1e02.zip u-boot-imx-85dafbb8bfe4144f346f4a76771fb690905a1e02.tar.gz u-boot-imx-85dafbb8bfe4144f346f4a76771fb690905a1e02.tar.bz2 |
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: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_sata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_sata.c b/common/cmd_sata.c index b401bd1..8d57285 100644 --- a/common/cmd_sata.c +++ b/common/cmd_sata.c @@ -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" |