Skip to content

Commit

Permalink
m68knommu: clean up uClinux boot log output
Browse files Browse the repository at this point in the history
During the arch setup phase of kernel boot we print out in the boot banner
that we are uClinux configured. The printk currently contains a bunch of
useless newlines and carriage returns - producing wastefull empty lines.
Remove these.

Signed-off-by: Greg Ungerer <[email protected]>
  • Loading branch information
Greg Ungerer committed Sep 26, 2016
1 parent aa5ac78 commit 150cefb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/m68k/kernel/setup_no.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ void __init setup_arch(char **cmdline_p)

process_uboot_commandline(&command_line[0], sizeof(command_line));

printk(KERN_INFO "\x0F\r\n\nuClinux/" CPU_NAME "\n");
printk(KERN_INFO "uClinux with CPU " CPU_NAME "\n");

#ifdef CONFIG_UCDIMM
printk(KERN_INFO "uCdimm by Lineo, Inc. <www.lineo.com>\n");
Expand Down

0 comments on commit 150cefb

Please sign in to comment.