Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

rtlwifi: rtl8192de: Modify Kconfig and Makefile routines for new driver

Set up Kconfig and Makefile for new driver for RTL8192DE.

Signed-off-by: Chaoming_Li <chaoming_li@realsil.com.cn>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by

Chaoming Li and committed by
John W. Linville
f9fc5136 f34317db

+28 -2
+13 -2
drivers/net/wireless/rtlwifi/Kconfig
··· 21 21 22 22 If you choose to build it as a module, it will be called rtl8192se 23 23 24 + config RTL8192DE 25 + tristate "Realtek RTL8192DE/RTL8188DE PCIe Wireless Network Adapter" 26 + depends on MAC80211 && EXPERIMENTAL 27 + select FW_LOADER 28 + select RTLWIFI 29 + ---help--- 30 + This is the driver for Realtek RTL8192DE/RTL8188DE 802.11n PCIe 31 + wireless network adapters. 32 + 33 + If you choose to build it as a module, it will be called rtl8192de 34 + 24 35 config RTL8192CU 25 36 tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter" 26 37 depends on MAC80211 && USB && EXPERIMENTAL ··· 46 35 47 36 config RTLWIFI 48 37 tristate 49 - depends on RTL8192CE || RTL8192CU || RTL8192SE 38 + depends on RTL8192CE || RTL8192CU || RTL8192SE || RTL8192DE 50 39 default m 51 40 52 41 config RTL8192C_COMMON 53 42 tristate 54 - depends on RTL8192CE || RTL8192CU || RTL8192SE 43 + depends on RTL8192CE || RTL8192CU 55 44 default m
+1
drivers/net/wireless/rtlwifi/Makefile
··· 23 23 obj-$(CONFIG_RTL8192CE) += rtl8192ce/ 24 24 obj-$(CONFIG_RTL8192CU) += rtl8192cu/ 25 25 obj-$(CONFIG_RTL8192SE) += rtl8192se/ 26 + obj-$(CONFIG_RTL8192DE) += rtl8192de/ 26 27 27 28 ccflags-y += -D__CHECK_ENDIAN__
+14
drivers/net/wireless/rtlwifi/rtl8192de/Makefile
··· 1 + rtl8192de-objs := \ 2 + dm.o \ 3 + fw.o \ 4 + hw.o \ 5 + led.o \ 6 + phy.o \ 7 + rf.o \ 8 + sw.o \ 9 + table.o \ 10 + trx.o 11 + 12 + obj-$(CONFIG_RTL8192DE) += rtl8192de.o 13 + 14 + ccflags-y += -D__CHECK_ENDIAN__