[U-Boot] [PATCH] 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 yorksun@freescale.com --- board/freescale/common/pixis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
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" );
participants (1)
-
York Sun