diff mbox

hyper-v. Fix broken build due to missing references. All credits go to Jan Kiszka, who reported and fixed this issue.

Message ID 1326970869-6088-1-git-send-email-vrozenfe@redhat.com
State New
Headers show

Commit Message

Vadim Rozenfeld Jan. 19, 2012, 11:01 a.m. UTC
---
 target-i386/hyperv.h |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)
diff mbox

Patch

diff --git a/target-i386/hyperv.h b/target-i386/hyperv.h
index 0d742f8..15467bf 100644
--- a/target-i386/hyperv.h
+++ b/target-i386/hyperv.h
@@ -24,9 +24,15 @@ 
 #define KVM_CPUID_SIGNATURE_NEXT                0x40000100
 #endif
 
+#ifndef CONFIG_USER_ONLY
 void hyperv_enable_vapic_recommended(bool val);
 void hyperv_enable_relaxed_timing(bool val);
 void hyperv_set_spinlock_retries(int val);
+#else
+static inline void hyperv_enable_vapic_recommended(bool val) { }
+static inline void hyperv_enable_relaxed_timing(bool val) { }
+static inline void hyperv_set_spinlock_retries(int val) { }
+#endif
 
 bool hyperv_enabled(void);
 bool hyperv_hypercall_available(void);