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-Tag: upstream/snapshot3+hdmi~7382^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1f15d10984c854e077da5aa1a23f901496b49773;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.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 05ef7e7..9a7bbad 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