diff options
author | Marcelo Tosatti <mtosatti@redhat.com> | 2012-04-20 17:21:46 -0400 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2012-04-20 17:24:54 -0400 |
commit | 1f15d10984c854e077da5aa1a23f901496b49773 (patch) | |
tree | 38b0c6fb2bf22413c02e83d9e3b8f28333131cf8 /include/asm-generic | |
parent | 8281715b4109b5ee26032ff7b77c0d575c4150f7 (diff) |
KVM: add kvm_arch_para_features stub to asm-generic/kvm_para.h
Needed by kvm_para_has_feature().
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'include/asm-generic')
-rw-r--r-- | include/asm-generic/kvm_para.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-generic/kvm_para.h b/include/asm-generic/kvm_para.h index 05ef7e705939..9a7bbadb688d 100644 --- a/include/asm-generic/kvm_para.h +++ b/include/asm-generic/kvm_para.h | |||
@@ -11,4 +11,9 @@ static inline bool kvm_check_and_clear_guest_paused(void) | |||
11 | return false; | 11 | return false; |
12 | } | 12 | } |
13 | 13 | ||
14 | static inline unsigned int kvm_arch_para_features(void) | ||
15 | { | ||
16 | return 0; | ||
17 | } | ||
18 | |||
14 | #endif | 19 | #endif |