mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 13:35:09 +07:00
85e09b4040
Modify rtlwifi routines for rtl8192se and set up Kconfig and Makefile for new driver. This patch also disables ASPM for the RTL8192SE to prevent some strange crashes on LF's system. 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>
28 lines
472 B
Makefile
28 lines
472 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
|
|
|
|
rtl8192c_common-objs += \
|
|
|
|
ifneq ($(CONFIG_PCI),)
|
|
rtlwifi-objs += pci.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_USB),)
|
|
rtlwifi-objs += usb.o
|
|
endif
|
|
|
|
obj-$(CONFIG_RTL8192C_COMMON) += rtl8192c/
|
|
obj-$(CONFIG_RTL8192CE) += rtl8192ce/
|
|
obj-$(CONFIG_RTL8192CU) += rtl8192cu/
|
|
obj-$(CONFIG_RTL8192SE) += rtl8192se/
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__
|