Support for CPU_BIG_ENDIAN configurations on arm64 was deprecated
in commit 1cf89b6bf660 ("arm64: Kconfig: Make CPU_BIG_ENDIAN depend
on BROKEN"). The support is now in the process of being completely
removed.The Kconfig for Hyper-V guests on arm64 currently has a !CPU_BIG_ENDIAN qualifier since Hyper-V only supports little endian. But with Linux on arm64 restricted to little endian, that qualifier is no longer necessary. Remove it. Signed-off-by: Michael Kelley <[email protected]> --- drivers/hv/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hv/Kconfig b/drivers/hv/Kconfig index aa11bcefddf2..db8464fcd119 100644 --- a/drivers/hv/Kconfig +++ b/drivers/hv/Kconfig @@ -5,7 +5,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) + || ARM64 select PARAVIRT select X86_HV_CALLBACK_VECTOR if X86 select OF_EARLY_FLATTREE if OF -- 2.25.1

