rtlwifi: rtl8188ee: Fix linker warnings

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>
This commit is contained in:
Larry Finger 2013-04-03 20:36:06 -05:00 committed by John W. Linville
parent 73e4937d48
commit 07b72bf334

View File

@ -13,4 +13,4 @@ rtl8188ee-objs := \
obj-$(CONFIG_RTL8188EE) += rtl8188ee.o
ccflags-y += -I drivers/net/wireless/rtlwifi -D__CHECK_ENDIAN__
ccflags-y += -Idrivers/net/wireless/rtlwifi -D__CHECK_ENDIAN__