aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc/kernel/setup_64.c
diff options
context:
space:
mode:
authorCorentin Labbe <clabbe@baylibre.com>2018-12-11 12:11:09 +0000
committerDavid S. Miller <davem@davemloft.net>2018-12-21 11:24:38 -0800
commitafaffac36806db34edcbd20f04258b1fcda192c1 (patch)
tree191928ec5860c1926580a69c9b035565c7256f4e /arch/sparc/kernel/setup_64.c
parentsparc: vdso: Drop implicit common-page-size linker flag (diff)
downloadlinux-dev-afaffac36806db34edcbd20f04258b1fcda192c1.tar.xz
linux-dev-afaffac36806db34edcbd20f04258b1fcda192c1.zip
sparc: Set "ARCH: sunxx" information on the same line
While checking boot log from SPARC qemu, I saw that the "ARCH: sunxx" information was split on two different line. This patchs merge both line together. In the meantime, thoses information need to be printed via pr_info since printk print them by default via the warning loglevel. Signed-off-by: Corentin Labbe <clabbe@baylibre.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--arch/sparc/kernel/setup_64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc/kernel/setup_64.c b/arch/sparc/kernel/setup_64.c
index cd2825cb8420..ecc788aa07bd 100644
--- a/arch/sparc/kernel/setup_64.c
+++ b/arch/sparc/kernel/setup_64.c
@@ -642,9 +642,9 @@ void __init setup_arch(char **cmdline_p)
register_console(&prom_early_console);
if (tlb_type == hypervisor)
- printk("ARCH: SUN4V\n");
+ pr_info("ARCH: SUN4V\n");
else
- printk("ARCH: SUN4U\n");
+ pr_info("ARCH: SUN4U\n");
#ifdef CONFIG_DUMMY_CONSOLE
conswitchp = &dummy_con;