summaryrefslogtreecommitdiff
path: root/drivers/staging/rtl8192e/Makefile
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2009-08-04 22:57:55 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 19:02:30 (GMT)
commitecdfa44610fa18678c3dd481af75368b9800c6c7 (patch)
tree294f4190ab902ac839e94cbf3d8e65d0b927a6c0 /drivers/staging/rtl8192e/Makefile
parent2d7cf8ef75abbe0d33d9115872d4545e9cefced2 (diff)
downloadlinux-ecdfa44610fa18678c3dd481af75368b9800c6c7.tar.xz
Staging: add Realtek 8192 PCI wireless driver
This wireless driver should work for the Realtek 8192 PCI devices. It comes directly from Realtek and has been tested to work on at least one laptop in the wild. Cc: Anthony Wong <awong1@novell.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/rtl8192e/Makefile')
-rw-r--r--drivers/staging/rtl8192e/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/drivers/staging/rtl8192e/Makefile b/drivers/staging/rtl8192e/Makefile
new file mode 100644
index 0000000..e24ab23
--- /dev/null
+++ b/drivers/staging/rtl8192e/Makefile
@@ -0,0 +1,35 @@
+NIC_SELECT = RTL8192E
+
+
+EXTRA_CFLAGS += -DRTL8192E
+EXTRA_CFLAGS += -std=gnu89
+EXTRA_CFLAGS += -O2
+EXTRA_CFLAGS += -mhard-float -DCONFIG_FORCE_HARD_FLOAT=y
+EXTRA_CFLAGS += -DTHOMAS_TURBO
+EXTRA_CFLAGS += -DENABLE_DOT11D
+
+r8192_pci-objs := \
+ r8192E_core.o \
+ r8180_93cx6.o \
+ r8192E_wx.o \
+ r8190_rtl8256.o \
+ r819xE_phy.o \
+ r819xE_firmware.o \
+ r819xE_cmdpkt.o \
+ r8192E_dm.o \
+ ieee80211/ieee80211_rx.o \
+ ieee80211/ieee80211_softmac.o \
+ ieee80211/ieee80211_tx.o \
+ ieee80211/ieee80211_wx.o \
+ ieee80211/ieee80211_module.o \
+ ieee80211/ieee80211_softmac_wx.o \
+ ieee80211/rtl819x_HTProc.o \
+ ieee80211/rtl819x_TSProc.o \
+ ieee80211/rtl819x_BAProc.o \
+ ieee80211/dot11d.o \
+ ieee80211/ieee80211_crypt.o \
+ ieee80211/ieee80211_crypt_tkip.o \
+ ieee80211/ieee80211_crypt_ccmp.o \
+ ieee80211/ieee80211_crypt_wep.o
+
+obj-$(CONFIG_RTL8192E) += r8192_pci.o