Merge tag 'v3.16-rc4' into drm-intel-next-queued
[deliverable/linux.git] / net / mac80211 / Makefile
... / ...
CommitLineData
1obj-$(CONFIG_MAC80211) += mac80211.o
2
3# mac80211 objects
4mac80211-y := \
5 main.o status.o \
6 sta_info.o \
7 wep.o \
8 wpa.o \
9 scan.o offchannel.o \
10 ht.o agg-tx.o agg-rx.o \
11 vht.o \
12 ibss.o \
13 iface.o \
14 rate.o \
15 michael.o \
16 tkip.o \
17 aes_ccm.o \
18 aes_cmac.o \
19 cfg.o \
20 rx.o \
21 spectmgmt.o \
22 tx.o \
23 key.o \
24 util.o \
25 wme.o \
26 event.o \
27 chan.o \
28 trace.o mlme.o \
29 tdls.o
30
31mac80211-$(CONFIG_MAC80211_LEDS) += led.o
32mac80211-$(CONFIG_MAC80211_DEBUGFS) += \
33 debugfs.o \
34 debugfs_sta.o \
35 debugfs_netdev.o \
36 debugfs_key.o
37
38mac80211-$(CONFIG_MAC80211_MESH) += \
39 mesh.o \
40 mesh_pathtbl.o \
41 mesh_plink.o \
42 mesh_hwmp.o \
43 mesh_sync.o \
44 mesh_ps.o
45
46mac80211-$(CONFIG_PM) += pm.o
47
48CFLAGS_trace.o := -I$(src)
49
50# objects for PID algorithm
51rc80211_pid-y := rc80211_pid_algo.o
52rc80211_pid-$(CONFIG_MAC80211_DEBUGFS) += rc80211_pid_debugfs.o
53
54rc80211_minstrel-y := rc80211_minstrel.o
55rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_debugfs.o
56
57rc80211_minstrel_ht-y := rc80211_minstrel_ht.o
58rc80211_minstrel_ht-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_ht_debugfs.o
59
60mac80211-$(CONFIG_MAC80211_RC_PID) += $(rc80211_pid-y)
61mac80211-$(CONFIG_MAC80211_RC_MINSTREL) += $(rc80211_minstrel-y)
62mac80211-$(CONFIG_MAC80211_RC_MINSTREL_HT) += $(rc80211_minstrel_ht-y)
63
64ccflags-y += -D__CHECK_ENDIAN__ -DDEBUG
This page took 0.044055 seconds and 5 git commands to generate.