RE: [PATCH v2 14/14] drivers: Kconfig: Simplify dependencies on ARM64 && !CPU_BIG_ENDIAN

From: Michael Kelley

Date: Mon Sep 07 2026 - 13:08:00 EST


From: Will Deacon <will@xxxxxxxxxx> Sent: Monday, September 7, 2026 9:37 AM
>
> Now that arm64 no longer supports a big-endian kernel, simplify some
> driver Kconfig entries so that the dependency on a little-endian kernel
> no longer needs to be called out explicitly.
>
> Suggested-by: Arnd Bergmann <arnd@xxxxxxxx>
> Signed-off-by: Will Deacon <will@xxxxxxxxxx>
> ---
> drivers/hv/Kconfig | 3 +--
> drivers/misc/vmw_vmci/Kconfig | 2 +-
> drivers/net/ethernet/microsoft/Kconfig | 2 +-
> drivers/soc/tegra/Kconfig | 5 -----
> 4 files changed, 3 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/hv/Kconfig b/drivers/hv/Kconfig
> index aa11bcefddf2..36445c2619ed 100644
> --- a/drivers/hv/Kconfig
> +++ b/drivers/hv/Kconfig
> @@ -4,8 +4,7 @@ menu "Microsoft Hyper-V guest support"
>
> config HYPERV
> bool "Microsoft Hyper-V core hypervisor support"
> - depends on (X86 && X86_LOCAL_APIC && HYPERVISOR_GUEST) \
> - || (ARM64 && !CPU_BIG_ENDIAN)
> + depends on (X86 && X86_LOCAL_APIC && HYPERVISOR_GUEST) || ARM64
> select PARAVIRT
> select X86_HV_CALLBACK_VECTOR if X86
> select OF_EARLY_FLATTREE if OF

For this Hyper-V change,

Reviewed-by: Michael Kelley <mhklinux@xxxxxxxxxxx>