From: Marcelo Tosatti Date: Fri, 20 Apr 2012 21:21:46 +0000 (-0300) Subject: KVM: add kvm_arch_para_features stub to asm-generic/kvm_para.h X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=1f15d10984c854e077da5aa1a23f901496b49773;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git KVM: add kvm_arch_para_features stub to asm-generic/kvm_para.h Needed by kvm_para_has_feature(). Reported-by: Stephen Rothwell Signed-off-by: Marcelo Tosatti --- 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) return false; } +static inline unsigned int kvm_arch_para_features(void) +{ + return 0; +} + #endif