diff options
author | Marc Zyngier <maz@kernel.org> | 2021-01-04 16:50:16 +0000 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2021-01-04 16:50:16 +0000 |
commit | 8cbebc4118b5933b3ae6351ceb433f75ac6b7c6b (patch) | |
tree | f500e3dbbeada8785404e337a8baf0c45b0788ae /arch/arm64/kvm/Makefile | |
parent | 957cbca7317f7413e1bac555a6b567af06598b10 (diff) |
KVM: arm64: Replace KVM_ARM_PMU with HW_PERF_EVENTS
KVM_ARM_PMU only existed for the benefit of 32bit ARM hosts,
and makes no sense now that we are 64bit only. Get rid of it.
Signed-off-by: Marc Zyngier <maz@kernel.org>
Diffstat (limited to 'arch/arm64/kvm/Makefile')
-rw-r--r-- | arch/arm64/kvm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kvm/Makefile b/arch/arm64/kvm/Makefile index 60fd181df624..13b017284bf9 100644 --- a/arch/arm64/kvm/Makefile +++ b/arch/arm64/kvm/Makefile @@ -24,4 +24,4 @@ kvm-y := $(KVM)/kvm_main.o $(KVM)/coalesced_mmio.o $(KVM)/eventfd.o \ vgic/vgic-mmio-v3.o vgic/vgic-kvm-device.o \ vgic/vgic-its.o vgic/vgic-debug.o -kvm-$(CONFIG_KVM_ARM_PMU) += pmu-emul.o +kvm-$(CONFIG_HW_PERF_EVENTS) += pmu-emul.o |