aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/cpu/mshyperv.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/cpu/mshyperv.c')
-rw-r--r--arch/x86/kernel/cpu/mshyperv.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/kernel/cpu/mshyperv.c b/arch/x86/kernel/cpu/mshyperv.c
index 20e242ea1bc4..4e7c6933691c 100644
--- a/arch/x86/kernel/cpu/mshyperv.c
+++ b/arch/x86/kernel/cpu/mshyperv.c
@@ -161,8 +161,8 @@ static void __init ms_hyperv_init_platform(void)
161 ms_hyperv.misc_features = cpuid_edx(HYPERV_CPUID_FEATURES); 161 ms_hyperv.misc_features = cpuid_edx(HYPERV_CPUID_FEATURES);
162 ms_hyperv.hints = cpuid_eax(HYPERV_CPUID_ENLIGHTMENT_INFO); 162 ms_hyperv.hints = cpuid_eax(HYPERV_CPUID_ENLIGHTMENT_INFO);
163 163
164 printk(KERN_INFO "HyperV: features 0x%x, hints 0x%x\n", 164 pr_info("HyperV: features 0x%x, hints 0x%x\n",
165 ms_hyperv.features, ms_hyperv.hints); 165 ms_hyperv.features, ms_hyperv.hints);
166 166
167#ifdef CONFIG_X86_LOCAL_APIC 167#ifdef CONFIG_X86_LOCAL_APIC
168 if (ms_hyperv.features & HV_X64_MSR_APIC_FREQUENCY_AVAILABLE) { 168 if (ms_hyperv.features & HV_X64_MSR_APIC_FREQUENCY_AVAILABLE) {
@@ -174,8 +174,8 @@ static void __init ms_hyperv_init_platform(void)
174 rdmsrl(HV_X64_MSR_APIC_FREQUENCY, hv_lapic_frequency); 174 rdmsrl(HV_X64_MSR_APIC_FREQUENCY, hv_lapic_frequency);
175 hv_lapic_frequency = div_u64(hv_lapic_frequency, HZ); 175 hv_lapic_frequency = div_u64(hv_lapic_frequency, HZ);
176 lapic_timer_frequency = hv_lapic_frequency; 176 lapic_timer_frequency = hv_lapic_frequency;
177 printk(KERN_INFO "HyperV: LAPIC Timer Frequency: %#x\n", 177 pr_info("HyperV: LAPIC Timer Frequency: %#x\n",
178 lapic_timer_frequency); 178 lapic_timer_frequency);
179 } 179 }
180#endif 180#endif
181 181