From: Alexander Graf Date: Wed, 15 Feb 2012 23:41:20 +0000 (+0000) Subject: KVM: PPC: make e500v2 kvm and e500mc cpu mutually exclusive X-Git-Tag: v3.12-rc1~3092^2~73 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b2e19b20708edb6413dea38e6285a6e546dce06b;p=kernel%2Fkernel-generic.git KVM: PPC: make e500v2 kvm and e500mc cpu mutually exclusive We can't run e500v2 kvm on e500mc kernels, so indicate that by making the 2 options mutually exclusive in kconfig. Signed-off-by: Alexander Graf Signed-off-by: Avi Kivity --- diff --git a/arch/powerpc/kvm/Kconfig b/arch/powerpc/kvm/Kconfig index 44a998d..f4dacb9 100644 --- a/arch/powerpc/kvm/Kconfig +++ b/arch/powerpc/kvm/Kconfig @@ -120,7 +120,7 @@ config KVM_EXIT_TIMING config KVM_E500V2 bool "KVM support for PowerPC E500v2 processors" - depends on EXPERIMENTAL && E500 + depends on EXPERIMENTAL && E500 && !PPC_E500MC select KVM select KVM_MMIO ---help---