1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Wangxun network device configuration
4#
5
6config NET_VENDOR_WANGXUN
7	bool "Wangxun devices"
8	default y
9	help
10	  If you have a network (Ethernet) card from Wangxun(R), 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 Wangxun(R) cards. If you say Y, you will
15	  be asked for your specific card in the following questions.
16
17if NET_VENDOR_WANGXUN
18
19config LIBWX
20	tristate
21	select PAGE_POOL
22	help
23	Common library for Wangxun(R) Ethernet drivers.
24
25config NGBE
26	tristate "Wangxun(R) GbE PCI Express adapters support"
27	depends on PCI
28	select LIBWX
29	select PHYLIB
30	help
31	  This driver supports Wangxun(R) GbE PCI Express family of
32	  adapters.
33
34	  More specific information on configuring the driver is in
35	  <file:Documentation/networking/device_drivers/ethernet/wangxun/ngbe.rst>.
36
37	  To compile this driver as a module, choose M here. The module
38	  will be called ngbe.
39
40config TXGBE
41	tristate "Wangxun(R) 10GbE PCI Express adapters support"
42	depends on PCI
43	select LIBWX
44	help
45	  This driver supports Wangxun(R) 10GbE PCI Express family of
46	  adapters.
47
48	  More specific information on configuring the driver is in
49	  <file:Documentation/networking/device_drivers/ethernet/wangxun/txgbe.rst>.
50
51	  To compile this driver as a module, choose M here. The module
52	  will be called txgbe.
53
54endif # NET_VENDOR_WANGXUN
55