diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-02-25 13:03:19 -0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-03-05 20:50:29 -0500 |
commit | e5d3e7fcbe43355413f2e8d03c3c73f4615d7f5d (patch) | |
tree | e84e9394f383cf3ff8e9845a71a376295ace1692 /common | |
parent | 7bf9f20d0246e0985c5c06bb56b3e9ce9300fcde (diff) | |
download | u-boot-imx-e5d3e7fcbe43355413f2e8d03c3c73f4615d7f5d.zip u-boot-imx-e5d3e7fcbe43355413f2e8d03c3c73f4615d7f5d.tar.gz u-boot-imx-e5d3e7fcbe43355413f2e8d03c3c73f4615d7f5d.tar.bz2 |
cmd_usb_mass_storage: Remove extra 'ums' string in the usage text
Currently the usage text for the 'ums' command looks like this:
Usage:
ums ums <USB_controller> [<devtype>] <devnum> e.g. ums 0 mmc 0
,so remove the extra 'ums' in the text.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_usb_mass_storage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_usb_mass_storage.c b/common/cmd_usb_mass_storage.c index 2c879ea..51c3fff 100644 --- a/common/cmd_usb_mass_storage.c +++ b/common/cmd_usb_mass_storage.c @@ -159,6 +159,6 @@ exit: U_BOOT_CMD(ums, 4, 1, do_usb_mass_storage, "Use the UMS [User Mass Storage]", - "ums <USB_controller> [<devtype>] <devnum> e.g. ums 0 mmc 0\n" + "<USB_controller> [<devtype>] <devnum> e.g. ums 0 mmc 0\n" " devtype defaults to mmc" ); |