KVM: PPC: Guard doorbell exception with CONFIG_PPC_DOORBELL
authorTiejun Chen <tiejun.chen@windriver.com>
Mon, 13 May 2013 02:00:45 +0000 (10:00 +0800)
committerAlexander Graf <agraf@suse.de>
Sun, 30 Jun 2013 01:33:21 +0000 (03:33 +0200)
Availablity of the doorbell_exception function is guarded by
CONFIG_PPC_DOORBELL. Use the same define to guard our caller
of it.

Signed-off-by: Tiejun Chen <tiejun.chen@windriver.com>
[agraf: improve patch description]
Signed-off-by: Alexander Graf <agraf@suse.de>
arch/powerpc/kvm/booke.c

index 1020119..62d4ece 100644 (file)
@@ -795,7 +795,7 @@ static void kvmppc_restart_interrupt(struct kvm_vcpu *vcpu,
                kvmppc_fill_pt_regs(&regs);
                timer_interrupt(&regs);
                break;
-#if defined(CONFIG_PPC_FSL_BOOK3E) || defined(CONFIG_PPC_BOOK3E_64)
+#if defined(CONFIG_PPC_DOORBELL)
        case BOOKE_INTERRUPT_DOORBELL:
                kvmppc_fill_pt_regs(&regs);
                doorbell_exception(&regs);