From: Bin Meng Date: Mon, 19 Jan 2015 13:32:00 +0000 (+0800) Subject: cmd: Fix gettime command help X-Git-Tag: KARO-TXA5-2015-06-26~38^2~17 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=89fc8bbf44e2ce6d73e0c71a9e88e477e91bc0db cmd: Fix gettime command help Remove the additional ',' and '\n' from the gettime command help. Signed-off-by: Bin Meng --- diff --git a/common/cmd_gettime.c b/common/cmd_gettime.c index 320ff709fa..c48baad9a1 100644 --- a/common/cmd_gettime.c +++ b/common/cmd_gettime.c @@ -35,6 +35,6 @@ static int do_gettime(cmd_tbl_t *cmdtp, int flag, int argc, U_BOOT_CMD( gettime, 1, 1, do_gettime, - "get timer val elapsed,\n", - "get time elapsed from uboot start\n" + "get timer val elapsed", + "get time elapsed from uboot start" );