From: York Sun Date: Fri, 31 May 2013 15:48:04 +0000 (-0700) Subject: powerpc/pixis: Fix pixis help message X-Git-Tag: v2013.07-rc2~63 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5bdeff3214b1b979a20fa0250cf02e93876d0b27;p=oweals%2Fu-boot.git powerpc/pixis: Fix pixis help message "pixis_reset help" command prints the message without a new line "\n", which makes the prompt on the same line. Signed-off-by: York Sun Signed-off-by: Andy Fleming --- diff --git a/board/freescale/common/pixis.c b/board/freescale/common/pixis.c index 8d07061c36..fbb709de14 100644 --- a/board/freescale/common/pixis.c +++ b/board/freescale/common/pixis.c @@ -480,6 +480,7 @@ static int pixis_reset_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char * const ar || unknown_param) { #ifdef CONFIG_SYS_LONGHELP puts(cmdtp->help); + putc('\n'); #endif return 1; } @@ -512,6 +513,7 @@ static int pixis_reset_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char * const ar && set_px_mpxpll(mpxpll))) { #ifdef CONFIG_SYS_LONGHELP puts(cmdtp->help); + putc('\n'); #endif return 1; }