diff mbox

[U-Boot] powerpc/pixis: Fix pixis help message

Message ID 1369778302-26174-1-git-send-email-yorksun@freescale.com
State Superseded
Delegated to: Andy Fleming
Headers show

Commit Message

York Sun May 28, 2013, 9:58 p.m. UTC
"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 <yorksun@freescale.com>
---
 board/freescale/common/pixis.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/board/freescale/common/pixis.c b/board/freescale/common/pixis.c
index 8d07061..577a542 100644
--- a/board/freescale/common/pixis.c
+++ b/board/freescale/common/pixis.c
@@ -552,5 +552,5 @@  U_BOOT_CMD(
 	"    pixis_reset [altbank]\n"
 	"    pixis_reset altbank wd\n"
 	"    pixis_reset altbank cf <SYSCLK freq> <COREPLL ratio> <MPXPLL ratio>\n"
-	"    pixis_reset cf <SYSCLK freq> <COREPLL ratio> <MPXPLL ratio>"
+	"    pixis_reset cf <SYSCLK freq> <COREPLL ratio> <MPXPLL ratio>\n"
 );