1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Amazon network device configuration
4#
5
6config NET_VENDOR_AMAZON
7	bool "Amazon Devices"
8	default y
9	help
10	  If you have a network (Ethernet) device belonging to this class, say Y.
11
12	  Note that the answer to this question doesn't directly affect the
13	  kernel: saying N will just cause the configurator to skip all
14	  the questions about Amazon devices. If you say Y, you will be asked
15	  for your specific device in the following questions.
16
17if NET_VENDOR_AMAZON
18
19config ENA_ETHERNET
20	tristate "Elastic Network Adapter (ENA) support"
21	depends on PCI_MSI && !CPU_BIG_ENDIAN
22	select DIMLIB
23	help
24	  This driver supports Elastic Network Adapter (ENA)"
25
26	  To compile this driver as a module, choose M here.
27	  The module will be called ena.
28
29endif #NET_VENDOR_AMAZON
30