mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 04:56:43 +07:00
1472d3a875
As noted by Stephan Rothwell, an allyesconfig build fails since rtl8192cu was merged with failures such as: drivers/net/wireless/rtlwifi/rtl8192cu/built-in.o: In function `rtl92c_phy_sw_chnl': (.opd+0xf30): multiple definition of `rtl92c_phy_sw_chnl' drivers/net/wireless/rtlwifi/rtl8192ce/built-in.o:(.opd+0xb70): first defined here drivers/net/wireless/rtlwifi/rtl8192cu/built-in.o: In function `rtl92c_fill_h2c_cmd': (.opd+0x288): multiple definition of `rtl92c_fill_h2c_cmd' drivers/net/wireless/rtlwifi/rtl8192ce/built-in.o:(.opd+0x288): first defined here These are caused because the code shared between rtl8192ce and rtl8192cu is included in both drivers. This has been fixed by creating a new modue that contains the shared code. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
34 lines
872 B
Plaintext
34 lines
872 B
Plaintext
config RTL8192CE
|
|
tristate "Realtek RTL8192CE/RTL8188CE Wireless Network Adapter"
|
|
depends on MAC80211 && PCI && EXPERIMENTAL
|
|
select FW_LOADER
|
|
select RTLWIFI
|
|
select RTL8192C_COMMON
|
|
---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 RTL8192CU
|
|
tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter"
|
|
depends on MAC80211 && USB && EXPERIMENTAL
|
|
select FW_LOADER
|
|
select RTLWIFI
|
|
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
|
|
depends on RTL8192CE || RTL8192CU
|
|
default m
|
|
|
|
config RTL8192C_COMMON
|
|
tristate
|
|
depends on RTL8192CE || RTL8192CU
|
|
default m
|