diff options
author | Willy Tarreau <w@1wt.eu> | 2011-02-20 11:43:07 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-02-23 16:25:30 -0500 |
commit | 892c05c093858086d808aeb366b2e11106dd96c6 (patch) | |
tree | ae201402785f8acf2d5ab0bdd30792ce6d1842b7 /drivers/net/wireless | |
parent | 4c0f13f3e7b8c6cbdaddc04579d05ea2bf1145a8 (diff) | |
download | op-kernel-dev-892c05c093858086d808aeb366b2e11106dd96c6.zip op-kernel-dev-892c05c093858086d808aeb366b2e11106dd96c6.tar.gz |
rtlwifi: Let rtlwifi build when PCI is not enabled
On systems where PCI does not exist, a build of rtlwifi will fail.
Apply the same fix in case there are systems with PCI but not USB.
Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/rtlwifi/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/wireless/rtlwifi/Makefile b/drivers/net/wireless/rtlwifi/Makefile index c3e83a1..52be12e 100644 --- a/drivers/net/wireless/rtlwifi/Makefile +++ b/drivers/net/wireless/rtlwifi/Makefile @@ -5,12 +5,15 @@ rtlwifi-objs := \ core.o \ debug.o \ efuse.o \ - pci.o \ ps.o \ rc.o \ regd.o \ usb.o +ifeq ($(CONFIG_PCI),y) +rtlwifi-objs += pci.o +endif + obj-$(CONFIG_RTL8192CE) += rtl8192ce/ obj-$(CONFIG_RTL8192CU) += rtl8192cu/ |