diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2007-07-27 15:43:22 +0200 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 16:47:30 -0700 |
commit | 6e0d114d52833449a4e40f6dc8582e88d0742be4 (patch) | |
tree | babc9afb1adfb418bb6853db9701e2df3c580838 /net/mac80211/Makefile | |
parent | 571ecf676d66735f59be6b950360e4074f02f47d (diff) | |
download | talos-op-linux-6e0d114d52833449a4e40f6dc8582e88d0742be4.tar.gz talos-op-linux-6e0d114d52833449a4e40f6dc8582e88d0742be4.zip |
[MAC80211]: move QoS rx handlers into rx.c
This patch moves the QoS handlers into rx.c making it possible
to compile wme.c only when NET_SCHED is defined.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Jiri Benc <jbenc@suse.cz>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/Makefile')
-rw-r--r-- | net/mac80211/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/Makefile b/net/mac80211/Makefile index b5853991324b..0353e75ec963 100644 --- a/net/mac80211/Makefile +++ b/net/mac80211/Makefile @@ -2,6 +2,7 @@ obj-$(CONFIG_MAC80211) += mac80211.o rc80211_simple.o mac80211-objs-$(CONFIG_MAC80211_LEDS) += ieee80211_led.o mac80211-objs-$(CONFIG_MAC80211_DEBUGFS) += debugfs.o debugfs_sta.o debugfs_netdev.o debugfs_key.o +mac80211-objs-$(CONFIG_NET_SCHED) += wme.o mac80211-objs := \ ieee80211.o \ @@ -16,7 +17,6 @@ mac80211-objs := \ regdomain.o \ tkip.o \ aes_ccm.o \ - wme.o \ ieee80211_cfg.o \ rx.o \ $(mac80211-objs-y) |