[PATCH 1/2] KVM: arm64: Unconditionally include generic KVM's Kconfig

From: Sean Christopherson
Date: Tue Sep 21 2021 - 18:22:44 EST


Unconditionally "source" the generic KVM Kconfig instead of wrapping it
with KVM=y. A future patch will select HAVE_KVM so that referencing
HAVE_KVM in common kernel code doesn't break, and because KVM=y and
HAVE_KVM=n is weird. Source the generic KVM Kconfig unconditionally so
that HAVE_KVM and KVM don't end up with a circular dependency.

Note, all but one of generic KVM's "configs" are of the HAVE_XYZ nature,
and the one outlier correctly takes a dependency on CONFIG_KVM, i.e. the
generic Kconfig is intended to be included unconditionally.

No functional change intended.

Signed-off-by: Sean Christopherson <seanjc@xxxxxxxxxx>
---
arch/arm64/kvm/Kconfig | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/arch/arm64/kvm/Kconfig b/arch/arm64/kvm/Kconfig
index a4eba0908bfa..c50f75cf76fe 100644
--- a/arch/arm64/kvm/Kconfig
+++ b/arch/arm64/kvm/Kconfig
@@ -4,6 +4,7 @@
#

source "virt/lib/Kconfig"
+source "virt/kvm/Kconfig"

menuconfig VIRTUALIZATION
bool "Virtualization"
@@ -42,10 +43,4 @@ menuconfig KVM

If unsure, say N.

-if KVM
-
-source "virt/kvm/Kconfig"
-
-endif # KVM
-
endif # VIRTUALIZATION
--
2.33.0.464.g1972c5931b-goog