From: Netanel Belgazal Date: Wed, 17 Oct 2018 10:04:21 +0000 (+0000) Subject: net: ena: Fix Kconfig dependency on X86 X-Git-Tag: v4.20-rc1~27^2~45 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8c590f9776386b8f697fd0b7ed6142ae6e3de79e;p=thirdparty%2Fkernel%2Flinux.git net: ena: Fix Kconfig dependency on X86 The Kconfig limitation of X86 is to too wide. The ENA driver only requires a little endian dependency. Change the dependency to be on little endian CPU. Signed-off-by: Netanel Belgazal Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/amazon/Kconfig b/drivers/net/ethernet/amazon/Kconfig index 99b30353541ab..9e87d7b8360f5 100644 --- a/drivers/net/ethernet/amazon/Kconfig +++ b/drivers/net/ethernet/amazon/Kconfig @@ -17,7 +17,7 @@ if NET_VENDOR_AMAZON config ENA_ETHERNET tristate "Elastic Network Adapter (ENA) support" - depends on (PCI_MSI && X86) + depends on PCI_MSI && !CPU_BIG_ENDIAN ---help--- This driver supports Elastic Network Adapter (ENA)"