Skip to content
Snippets Groups Projects
Commit 5bdeff32 authored by York Sun's avatar York Sun Committed by Andy Fleming
Browse files

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: default avatarYork Sun <yorksun@freescale.com>
Signed-off-by: default avatarAndy Fleming <afleming@freescale.com>
parent 0d3efd80
No related branches found
No related tags found
No related merge requests found
...@@ -480,6 +480,7 @@ static int pixis_reset_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char * const ar ...@@ -480,6 +480,7 @@ static int pixis_reset_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char * const ar
|| unknown_param) { || unknown_param) {
#ifdef CONFIG_SYS_LONGHELP #ifdef CONFIG_SYS_LONGHELP
puts(cmdtp->help); puts(cmdtp->help);
putc('\n');
#endif #endif
return 1; return 1;
} }
...@@ -512,6 +513,7 @@ static int pixis_reset_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char * const ar ...@@ -512,6 +513,7 @@ static int pixis_reset_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char * const ar
&& set_px_mpxpll(mpxpll))) { && set_px_mpxpll(mpxpll))) {
#ifdef CONFIG_SYS_LONGHELP #ifdef CONFIG_SYS_LONGHELP
puts(cmdtp->help); puts(cmdtp->help);
putc('\n');
#endif #endif
return 1; return 1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment