mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-23 14:13:49 +07:00
aa45a673b2
A new driver in the rtlwifi family for the RTL8723BE will soon be added. The bluetooth coexistence code for this device has been split into a separate mini driver as it will be shared with other devices. This commit adds the the headers and sources, and modifies Kconfig and Makefile to configure and build this driver. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
31 lines
665 B
Makefile
31 lines
665 B
Makefile
obj-$(CONFIG_RTLWIFI) += rtlwifi.o
|
|
rtlwifi-objs := \
|
|
base.o \
|
|
cam.o \
|
|
core.o \
|
|
debug.o \
|
|
efuse.o \
|
|
ps.o \
|
|
rc.o \
|
|
regd.o \
|
|
stats.o
|
|
|
|
rtl8192c_common-objs += \
|
|
|
|
obj-$(CONFIG_RTLWIFI_PCI) += rtl_pci.o
|
|
rtl_pci-objs := pci.o
|
|
|
|
obj-$(CONFIG_RTLWIFI_USB) += rtl_usb.o
|
|
rtl_usb-objs := usb.o
|
|
|
|
obj-$(CONFIG_RTL8192C_COMMON) += rtl8192c/
|
|
obj-$(CONFIG_RTL8192CE) += rtl8192ce/
|
|
obj-$(CONFIG_RTL8192CU) += rtl8192cu/
|
|
obj-$(CONFIG_RTL8192SE) += rtl8192se/
|
|
obj-$(CONFIG_RTL8192DE) += rtl8192de/
|
|
obj-$(CONFIG_RTL8723AE) += rtl8723ae/
|
|
obj-$(CONFIG_RTL8188EE) += rtl8188ee/
|
|
obj-$(CONFIG_RTLBTCOEXIST) += btcoexist/
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__
|