Skip to content

Commit

Permalink
[SPARC64]: Print ARCH as SUN4V when tlb_type is hypervisor.
Browse files Browse the repository at this point in the history
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Mar 20, 2006
1 parent d82ace7 commit 3a8c069
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion arch/sparc64/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3a8c069

Please sign in to comment.