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	help
22	Common library for Wangxun(R) Ethernet drivers.
23
24config NGBE
25	tristate "Wangxun(R) GbE PCI Express adapters support"
26	depends on PCI
27	select LIBWX
28	select PHYLIB
29	help
30	  This driver supports Wangxun(R) GbE PCI Express family of
31	  adapters.
32
33	  More specific information on configuring the driver is in
34	  <file:Documentation/networking/device_drivers/ethernet/wangxun/ngbe.rst>.
35
36	  To compile this driver as a module, choose M here. The module
37	  will be called ngbe.
38
39config TXGBE
40	tristate "Wangxun(R) 10GbE PCI Express adapters support"
41	depends on PCI
42	select LIBWX
43	help
44	  This driver supports Wangxun(R) 10GbE PCI Express family of
45	  adapters.
46
47	  More specific information on configuring the driver is in
48	  <file:Documentation/networking/device_drivers/ethernet/wangxun/txgbe.rst>.
49
50	  To compile this driver as a module, choose M here. The module
51	  will be called txgbe.
52
53endif # NET_VENDOR_WANGXUN
54