mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 12:34:41 +08:00
07b72bf334
Building rtl8188ee yields warnings such as the following: x86_64-linux-gcc: warning: drivers/net/wireless/rtlwifi: linker input file unused because linking not done The only potential cause is an extraneous space in the make file. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Tested-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: John W. Linville <linville@tuxdriver.com>
17 lines
247 B
Makefile
17 lines
247 B
Makefile
rtl8188ee-objs := \
|
|
dm.o \
|
|
fw.o \
|
|
hw.o \
|
|
led.o \
|
|
phy.o \
|
|
pwrseq.o \
|
|
pwrseqcmd.o \
|
|
rf.o \
|
|
sw.o \
|
|
table.o \
|
|
trx.o
|
|
|
|
obj-$(CONFIG_RTL8188EE) += rtl8188ee.o
|
|
|
|
ccflags-y += -Idrivers/net/wireless/rtlwifi -D__CHECK_ENDIAN__
|