diff options
author | Frans Meulenbroeks | 2010-02-25 14:03:08 +0100 |
---|---|---|
committer | Wolfgang Denk | 2010-03-21 16:44:04 +0100 |
commit | 9d90a93d367272ee65550c0c9f82615cec967c70 (patch) | |
tree | 952286ac78310c725a17dc4880834a5271e18138 | |
parent | 67c7189dd35cb368ef665126fd17816581bd2e92 (diff) |
cmd_mmc remove \n
This patch removes the \n after the help message for mmcinfo.
This resulted in an empty line being displayed after the mmcinfo line
when the help command was given.
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
-rw-r--r-- | common/cmd_mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index 0e3393b5f44..c67c9cf728f 100644 --- a/common/cmd_mmc.c +++ b/common/cmd_mmc.c @@ -136,7 +136,7 @@ int do_mmcinfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) } U_BOOT_CMD(mmcinfo, 2, 0, do_mmcinfo, - "mmcinfo <dev num>-- display MMC info\n", + "mmcinfo <dev num>-- display MMC info", "" ); |