diff options
-rw-r--r-- | arch/x86/Kbuild | 2 | ||||
-rw-r--r-- | arch/x86/include/asm/mshyperv.h | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/arch/x86/Kbuild b/arch/x86/Kbuild index 586b786b3edf..3e6f64073005 100644 --- a/arch/x86/Kbuild +++ b/arch/x86/Kbuild | |||
@@ -8,7 +8,7 @@ obj-$(CONFIG_KVM) += kvm/ | |||
8 | obj-$(CONFIG_XEN) += xen/ | 8 | obj-$(CONFIG_XEN) += xen/ |
9 | 9 | ||
10 | # Hyper-V paravirtualization support | 10 | # Hyper-V paravirtualization support |
11 | obj-$(CONFIG_HYPERVISOR_GUEST) += hyperv/ | 11 | obj-$(subst m,y,$(CONFIG_HYPERV)) += hyperv/ |
12 | 12 | ||
13 | # lguest paravirtualization support | 13 | # lguest paravirtualization support |
14 | obj-$(CONFIG_LGUEST_GUEST) += lguest/ | 14 | obj-$(CONFIG_LGUEST_GUEST) += lguest/ |
diff --git a/arch/x86/include/asm/mshyperv.h b/arch/x86/include/asm/mshyperv.h index 2b58c8c1eeaa..baea2679a0aa 100644 --- a/arch/x86/include/asm/mshyperv.h +++ b/arch/x86/include/asm/mshyperv.h | |||
@@ -173,7 +173,12 @@ void hyperv_init(void); | |||
173 | void hyperv_report_panic(struct pt_regs *regs); | 173 | void hyperv_report_panic(struct pt_regs *regs); |
174 | bool hv_is_hypercall_page_setup(void); | 174 | bool hv_is_hypercall_page_setup(void); |
175 | void hyperv_cleanup(void); | 175 | void hyperv_cleanup(void); |
176 | #endif | 176 | #else /* CONFIG_HYPERV */ |
177 | static inline void hyperv_init(void) {} | ||
178 | static inline bool hv_is_hypercall_page_setup(void) { return false; } | ||
179 | static inline void hyperv_cleanup(void) {} | ||
180 | #endif /* CONFIG_HYPERV */ | ||
181 | |||
177 | #ifdef CONFIG_HYPERV_TSCPAGE | 182 | #ifdef CONFIG_HYPERV_TSCPAGE |
178 | struct ms_hyperv_tsc_page *hv_get_tsc_page(void); | 183 | struct ms_hyperv_tsc_page *hv_get_tsc_page(void); |
179 | static inline u64 hv_read_tsc_page(const struct ms_hyperv_tsc_page *tsc_pg) | 184 | static inline u64 hv_read_tsc_page(const struct ms_hyperv_tsc_page *tsc_pg) |