diff options
author | 2021-08-12 10:39:54 +0530 | |
---|---|---|
committer | 2021-08-18 09:26:07 +0100 | |
commit | 9329752bc8659e3934e2b13434b2fddb0df0bb13 (patch) | |
tree | 7691f7fdb9f343b75aaaa8b525e810e3acf48313 | |
parent | KVM: arm64: Drop check_kvm_target_cpu() based percpu probe (diff) | |
download | wireguard-linux-9329752bc8659e3934e2b13434b2fddb0df0bb13.tar.xz wireguard-linux-9329752bc8659e3934e2b13434b2fddb0df0bb13.zip |
KVM: arm64: Drop unused REQUIRES_VIRT
This seems like a residue from the past. REQUIRES_VIRT is no more available
. Hence it can just be dropped along with the related code section.
Cc: Marc Zyngier <maz@kernel.org>
Cc: James Morse <james.morse@arm.com>
Cc: Alexandru Elisei <alexandru.elisei@arm.com>
Cc: Suzuki K Poulose <suzuki.poulose@arm.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Cc: linux-arm-kernel@lists.infradead.org
Cc: kvmarm@lists.cs.columbia.edu
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Anshuman Khandual <anshuman.khandual@arm.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/1628744994-16623-6-git-send-email-anshuman.khandual@arm.com
Diffstat (limited to '')
-rw-r--r-- | arch/arm64/kvm/arm.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/arm64/kvm/arm.c b/arch/arm64/kvm/arm.c index ee9b1166f330..d779a29c5607 100644 --- a/arch/arm64/kvm/arm.c +++ b/arch/arm64/kvm/arm.c @@ -42,10 +42,6 @@ #include <kvm/arm_pmu.h> #include <kvm/arm_psci.h> -#ifdef REQUIRES_VIRT -__asm__(".arch_extension virt"); -#endif - static enum kvm_mode kvm_mode = KVM_MODE_DEFAULT; DEFINE_STATIC_KEY_FALSE(kvm_protected_mode_initialized); |