diff options
author | Christoffer Dall <cdall@linaro.org> | 2017-05-02 21:11:49 +0300 |
---|---|---|
committer | Christoffer Dall <cdall@linaro.org> | 2017-06-08 17:59:56 +0300 |
commit | 3cba4af31c61fc9420fdcf083f509a6c20a6d8e5 (patch) | |
tree | b8f6ed98f76eafb683fc7880d2bd03ec55371a15 /virt | |
parent | 2227e43930278a53054046f9746cba69a1379639 (diff) | |
download | linux-3cba4af31c61fc9420fdcf083f509a6c20a6d8e5.tar.xz |
KVM: arm/arm64: Move irq_is_ppi() to header file
We are about to need this define in the arch timer code as well so move
it to a common location.
Signed-off-by: Christoffer Dall <cdall@linaro.org>
Acked-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'virt')
-rw-r--r-- | virt/kvm/arm/pmu.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/virt/kvm/arm/pmu.c b/virt/kvm/arm/pmu.c index 96a9cab39982..574feff55a6c 100644 --- a/virt/kvm/arm/pmu.c +++ b/virt/kvm/arm/pmu.c @@ -496,8 +496,6 @@ static int kvm_arm_pmu_v3_init(struct kvm_vcpu *vcpu) return 0; } -#define irq_is_ppi(irq) ((irq) >= VGIC_NR_SGIS && (irq) < VGIC_NR_PRIVATE_IRQS) - /* * For one VM the interrupt type must be same for each vcpu. * As a PPI, the interrupt number is the same for all vcpus, |