1config RTLWIFI 2 tristate "Realtek wireless card support" 3 depends on MAC80211 4 select FW_LOADER 5 ---help--- 6 This is common code for RTL8192CE/RTL8192CU/RTL8192SE/RTL8723AE 7 drivers. This module does nothing by itself - the various front-end 8 drivers need to be enabled to support any desired devices. 9 10 If you choose to build as a module, it'll be called rtlwifi. 11 12config RTLWIFI_DEBUG 13 bool "Debugging output for rtlwifi driver family" 14 depends on RTLWIFI 15 default y 16 ---help--- 17 To use the module option that sets the dynamic-debugging level for, 18 the front-end driver, this parameter must be "Y". For memory-limited 19 systems, choose "N". If in doubt, choose "Y". 20 21config RTL8192CE 22 tristate "Realtek RTL8192CE/RTL8188CE Wireless Network Adapter" 23 depends on RTLWIFI && PCI 24 select RTL8192C_COMMON 25 ---help--- 26 This is the driver for Realtek RTL8192CE/RTL8188CE 802.11n PCIe 27 wireless network adapters. 28 29 If you choose to build it as a module, it will be called rtl8192ce 30 31config RTL8192SE 32 tristate "Realtek RTL8192SE/RTL8191SE PCIe Wireless Network Adapter" 33 depends on RTLWIFI && PCI 34 ---help--- 35 This is the driver for Realtek RTL8192SE/RTL8191SE 802.11n PCIe 36 wireless network adapters. 37 38 If you choose to build it as a module, it will be called rtl8192se 39 40config RTL8192DE 41 tristate "Realtek RTL8192DE/RTL8188DE PCIe Wireless Network Adapter" 42 depends on RTLWIFI && PCI 43 ---help--- 44 This is the driver for Realtek RTL8192DE/RTL8188DE 802.11n PCIe 45 wireless network adapters. 46 47 If you choose to build it as a module, it will be called rtl8192de 48 49config RTL8723AE 50 tristate "Realtek RTL8723AE PCIe Wireless Network Adapter" 51 depends on RTLWIFI && PCI 52 ---help--- 53 This is the driver for Realtek RTL8723AE 802.11n PCIe 54 wireless network adapters. 55 56 If you choose to build it as a module, it will be called rtl8723ae 57 58config RTL8188EE 59 tristate "Realtek RTL8188EE Wireless Network Adapter" 60 depends on RTLWIFI && PCI 61 ---help--- 62 This is the driver for Realtek RTL8188EE 802.11n PCIe 63 wireless network adapters. 64 65 If you choose to build it as a module, it will be called rtl8188ee 66 67config RTL8192CU 68 tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter" 69 depends on RTLWIFI && USB 70 select RTL8192C_COMMON 71 ---help--- 72 This is the driver for Realtek RTL8192CU/RTL8188CU 802.11n USB 73 wireless network adapters. 74 75 If you choose to build it as a module, it will be called rtl8192cu 76 77config RTL8192C_COMMON 78 tristate 79 depends on RTL8192CE || RTL8192CU 80 default m 81