mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 06:34:11 +08:00
0f01545346
This patch completes the addition of the new driver for the Realtek RTL8723AE devices by adding the make file and by modifying Kconfig and Makefile of rtlwifi. Some variable names were shortened to ease the problem of limiting all lines to 80 characters, thus changes were made to wifi.h and rtl8192{ce,cu,sw}/hw.c. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Cc: <chaoming_li@realsil.com.cn> Signed-off-by: John W. Linville <linville@tuxdriver.com>
31 lines
563 B
Makefile
31 lines
563 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 += \
|
|
|
|
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/
|
|
obj-$(CONFIG_RTL8192DE) += rtl8192de/
|
|
obj-$(CONFIG_RTL8723AE) += rtl8723ae/
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__
|