diff options
author | Corentin Labbe <clabbe@baylibre.com> | 2018-12-11 12:11:09 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-12-21 11:24:38 -0800 |
commit | afaffac36806db34edcbd20f04258b1fcda192c1 (patch) | |
tree | 191928ec5860c1926580a69c9b035565c7256f4e /arch/sparc/kernel/setup_64.c | |
parent | 0ff70f62c6a7eb5521ab340624de4c19f0c0881c (diff) | |
download | linux-afaffac36806db34edcbd20f04258b1fcda192c1.tar.bz2 |
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 'arch/sparc/kernel/setup_64.c')
-rw-r--r-- | arch/sparc/kernel/setup_64.c | 4 |
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; |