aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/kernel/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/s390/kernel/setup.c')
-rw-r--r--arch/s390/kernel/setup.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/arch/s390/kernel/setup.c b/arch/s390/kernel/setup.c
index 2f35133ebc18..a9d18aafa5f4 100644
--- a/arch/s390/kernel/setup.c
+++ b/arch/s390/kernel/setup.c
@@ -801,9 +801,13 @@ setup_arch(char **cmdline_p)
801 "This machine has an IEEE fpu\n" : 801 "This machine has an IEEE fpu\n" :
802 "This machine has no IEEE fpu\n"); 802 "This machine has no IEEE fpu\n");
803#else /* CONFIG_64BIT */ 803#else /* CONFIG_64BIT */
804 printk((MACHINE_IS_VM) ? 804 if (MACHINE_IS_VM)
805 "We are running under VM (64 bit mode)\n" : 805 printk("We are running under VM (64 bit mode)\n");
806 "We are running native (64 bit mode)\n"); 806 else if (MACHINE_IS_KVM) {
807 printk("We are running under KVM (64 bit mode)\n");
808 add_preferred_console("ttyS", 1, NULL);
809 } else
810 printk("We are running native (64 bit mode)\n");
807#endif /* CONFIG_64BIT */ 811#endif /* CONFIG_64BIT */
808 812
809 /* Save unparsed command line copy for /proc/cmdline */ 813 /* Save unparsed command line copy for /proc/cmdline */