From mboxrd@z Thu Jan 1 00:00:00 1970 From: Subject: [PATCH net-next] net: ena: Fix Kconfig dependencies X86 Date: Wed, 17 Oct 2018 08:16:01 +0000 Message-ID: <20181017081601.42717-1-netanel@amazon.com> Mime-Version: 1.0 Content-Type: text/plain Cc: , , Netanel Belgazal , , , , , , , , To: , Return-path: Received: from smtp-fw-4101.amazon.com ([72.21.198.25]:2788 "EHLO smtp-fw-4101.amazon.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726967AbeJQQKu (ORCPT ); Wed, 17 Oct 2018 12:10:50 -0400 Sender: netdev-owner@vger.kernel.org List-ID: From: Netanel Belgazal 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 --- drivers/net/ethernet/amazon/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/amazon/Kconfig b/drivers/net/ethernet/amazon/Kconfig index 99b30353541a..f4d16c7e104f 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)" -- 2.15.2.AMZN