mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 05:36:46 +07:00
6f334c2b39
The present build configuration for the rtlwifi family of drivers will fail under two known conditions: (1) If rtlwifi is selected without selecting any of the dependent drivers, there are errors in the build. (2) If the PCI drivers are built into the kernel and the USB drivers are modules, or vice versa, there are missing globals. The first condition is fixed by never building rtlwifi unless at least one of the device drivers is selected. The second failure is fixed by splitting the PCI and USB codes out of rtlwifi, and creating their own mini drivers. If the drivers that use them are modules, they will also be modules. Although a number of files are touched by this patch, only Makefile and Kconfig have undergone significant changes. The only modifications to the other files were to export entry points needed by the new rtl_pci and rtl_usb units, or to rename two variables that had names that were likely to cause namespace collisions. Reported-by: Fengguang Wu <fengguang.wu@intel.com> [Condition 1] Reported-by: Ben Hutchings <bhutchings@solarflare.com> [Condition 2] Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Cc: Ben Hutchings <bhutchings@solarflare.com> Cc: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
105 lines
2.6 KiB
Plaintext
105 lines
2.6 KiB
Plaintext
menuconfig RTL_CARDS
|
|
tristate "Realtek rtlwifi family of devices"
|
|
depends on MAC80211 && (PCI || USB)
|
|
default y
|
|
---help---
|
|
This option will enable support for the Realtek mac80211-based
|
|
wireless drivers. Drivers rtl8192ce, rtl8192cu, rtl8192se, rtl8192de,
|
|
rtl8723eu, and rtl8188eu share some common code.
|
|
|
|
if RTL_CARDS
|
|
|
|
config RTL8192CE
|
|
tristate "Realtek RTL8192CE/RTL8188CE Wireless Network Adapter"
|
|
depends on PCI
|
|
select RTL8192C_COMMON
|
|
select RTLWIFI
|
|
select RTLWIFI_PCI
|
|
---help---
|
|
This is the driver for Realtek RTL8192CE/RTL8188CE 802.11n PCIe
|
|
wireless network adapters.
|
|
|
|
If you choose to build it as a module, it will be called rtl8192ce
|
|
|
|
config RTL8192SE
|
|
tristate "Realtek RTL8192SE/RTL8191SE PCIe Wireless Network Adapter"
|
|
depends on PCI
|
|
select RTLWIFI
|
|
select RTLWIFI_PCI
|
|
---help---
|
|
This is the driver for Realtek RTL8192SE/RTL8191SE 802.11n PCIe
|
|
wireless network adapters.
|
|
|
|
If you choose to build it as a module, it will be called rtl8192se
|
|
|
|
config RTL8192DE
|
|
tristate "Realtek RTL8192DE/RTL8188DE PCIe Wireless Network Adapter"
|
|
depends on PCI
|
|
select RTLWIFI
|
|
select RTLWIFI_PCI
|
|
---help---
|
|
This is the driver for Realtek RTL8192DE/RTL8188DE 802.11n PCIe
|
|
wireless network adapters.
|
|
|
|
If you choose to build it as a module, it will be called rtl8192de
|
|
|
|
config RTL8723AE
|
|
tristate "Realtek RTL8723AE PCIe Wireless Network Adapter"
|
|
depends on PCI
|
|
select RTLWIFI
|
|
select RTLWIFI_PCI
|
|
---help---
|
|
This is the driver for Realtek RTL8723AE 802.11n PCIe
|
|
wireless network adapters.
|
|
|
|
If you choose to build it as a module, it will be called rtl8723ae
|
|
|
|
config RTL8188EE
|
|
tristate "Realtek RTL8188EE Wireless Network Adapter"
|
|
depends on PCI
|
|
select RTLWIFI
|
|
select RTLWIFI_PCI
|
|
---help---
|
|
This is the driver for Realtek RTL8188EE 802.11n PCIe
|
|
wireless network adapters.
|
|
|
|
If you choose to build it as a module, it will be called rtl8188ee
|
|
|
|
config RTL8192CU
|
|
tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter"
|
|
depends on USB
|
|
select RTLWIFI
|
|
select RTLWIFI_USB
|
|
select RTL8192C_COMMON
|
|
---help---
|
|
This is the driver for Realtek RTL8192CU/RTL8188CU 802.11n USB
|
|
wireless network adapters.
|
|
|
|
If you choose to build it as a module, it will be called rtl8192cu
|
|
|
|
config RTLWIFI
|
|
tristate
|
|
select FW_LOADER
|
|
|
|
config RTLWIFI_PCI
|
|
tristate
|
|
|
|
config RTLWIFI_USB
|
|
tristate
|
|
|
|
config RTLWIFI_DEBUG
|
|
bool "Debugging output for rtlwifi driver family"
|
|
depends on RTLWIFI
|
|
default y
|
|
---help---
|
|
To use the module option that sets the dynamic-debugging level for,
|
|
the front-end driver, this parameter must be "Y". For memory-limited
|
|
systems, choose "N". If in doubt, choose "Y".
|
|
|
|
config RTL8192C_COMMON
|
|
tristate
|
|
depends on RTL8192CE || RTL8192CU
|
|
default y
|
|
|
|
endif
|