From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Tue, 28 May 2013 14:58:22 -0700 Subject: [U-Boot] [PATCH] powerpc/pixis: Fix pixis help message Message-ID: <1369778302-26174-1-git-send-email-yorksun@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de "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 --- 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 \n" - " pixis_reset cf " + " pixis_reset cf \n" ); -- 1.7.9.5