diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-03-23 22:27:34 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-04-04 22:42:54 +0200 |
commit | 852dbfdd56f68eb67d138b306a64e4de58dabb91 (patch) | |
tree | 85d0ba709bc0a6a8b0b1291154ee584121be7240 | |
parent | b93b24bf76f8a8220b236df3a5f30b2204eb4edc (diff) | |
download | u-boot-imx-852dbfdd56f68eb67d138b306a64e4de58dabb91.zip u-boot-imx-852dbfdd56f68eb67d138b306a64e4de58dabb91.tar.gz u-boot-imx-852dbfdd56f68eb67d138b306a64e4de58dabb91.tar.bz2 |
more command usage cleanup
Fix up a few dangling commands like in "Command usage cleanup" commit.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | common/cmd_mmc.c | 2 | ||||
-rw-r--r-- | common/cmd_ubifs.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index 16c919b..ee94470 100644 --- a/common/cmd_mmc.c +++ b/common/cmd_mmc.c @@ -166,7 +166,7 @@ int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) U_BOOT_CMD( mmc, 6, 1, do_mmcops, - "mmc - MMC sub system\n", + "MMC sub system", "mmc read <device num> addr blk# cnt\n" "mmc write <device num> addr blk# cnt\n" "mmc rescan <device num>\n" diff --git a/common/cmd_ubifs.c b/common/cmd_ubifs.c index b2e0f4f..4767aa4 100644 --- a/common/cmd_ubifs.c +++ b/common/cmd_ubifs.c @@ -118,15 +118,15 @@ int do_ubifs_load(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) U_BOOT_CMD( ubifsmount, 2, 0, do_ubifs_mount, - "ubifsmount- mount UBIFS volume\n", + "mount UBIFS volume", "\n"); U_BOOT_CMD(ubifsls, 2, 0, do_ubifs_ls, - "ubifsls - list files in a directory\n", + "list files in a directory", "[directory]\n" " - list files in a 'directory' (default '/')\n"); U_BOOT_CMD(ubifsload, 4, 0, do_ubifs_load, - "ubifsload- load file from an UBIFS filesystem\n", + "load file from an UBIFS filesystem", "<addr> <filename> [bytes]\n" " - load file 'filename' to address 'addr'\n"); |