浏览代码

m68knommu: clean up uClinux boot log output

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 <gerg@linux-m68k.org>
Greg Ungerer 9 年之前
父节点
当前提交
150cefbbee
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/m68k/kernel/setup_no.c

+ 1 - 1
arch/m68k/kernel/setup_no.c

@@ -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");