Commit 3a8c069d authored by David S. Miller's avatar David S. Miller

[SPARC64]: Print ARCH as SUN4V when tlb_type is hypervisor.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d82ace7d
......@@ -597,7 +597,10 @@ void __init setup_arch(char **cmdline_p)
*cmdline_p = prom_getbootargs();
strcpy(saved_command_line, *cmdline_p);
printk("ARCH: SUN4U\n");
if (tlb_type == hypervisor)
printk("ARCH: SUN4V\n");
else
printk("ARCH: SUN4U\n");
#ifdef CONFIG_DUMMY_CONSOLE
conswitchp = &dummy_con;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment