mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
1472d3a875
As noted by Stephan Rothwell, an allyesconfig build fails since rtl8192cu was merged with failures such as: drivers/net/wireless/rtlwifi/rtl8192cu/built-in.o: In function `rtl92c_phy_sw_chnl': (.opd+0xf30): multiple definition of `rtl92c_phy_sw_chnl' drivers/net/wireless/rtlwifi/rtl8192ce/built-in.o:(.opd+0xb70): first defined here drivers/net/wireless/rtlwifi/rtl8192cu/built-in.o: In function `rtl92c_fill_h2c_cmd': (.opd+0x288): multiple definition of `rtl92c_fill_h2c_cmd' drivers/net/wireless/rtlwifi/rtl8192ce/built-in.o:(.opd+0x288): first defined here These are caused because the code shared between rtl8192ce and rtl8192cu is included in both drivers. This has been fixed by creating a new modue that contains the shared code. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
24 lines
392 B
Makefile
24 lines
392 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 \
|
|
usb.o
|
|
|
|
rtl8192c_common-objs += \
|
|
|
|
ifeq ($(CONFIG_PCI),y)
|
|
rtlwifi-objs += pci.o
|
|
endif
|
|
|
|
obj-$(CONFIG_RTL8192C_COMMON) += rtl8192c/
|
|
obj-$(CONFIG_RTL8192CE) += rtl8192ce/
|
|
obj-$(CONFIG_RTL8192CU) += rtl8192cu/
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__
|