]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
cmd_usb_mass_storage: Remove extra 'ums' string in the usage text
authorFabio Estevam <fabio.estevam@freescale.com>
Wed, 25 Feb 2015 16:03:19 +0000 (13:03 -0300)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 1 Sep 2015 12:24:12 +0000 (14:24 +0200)
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>
common/cmd_usb_mass_storage.c

index 2c879ea0837c5e13e69fb60333bb921e68b2d991..51c3fffb46ce2914ecf14e44a65723e1cd487216 100644 (file)
@@ -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"
 );