diff options
author | Johannes Berg <johannes.berg@intel.com> | 2014-11-11 12:48:42 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-12-15 12:34:45 +0100 |
commit | 848955ccf0bdf42fff33e021a76f6daec98fe59b (patch) | |
tree | f4d17dc5c3f732ad016152ba509b4bc681526ec2 /net/mac80211/debugfs.c | |
parent | 4bcc56bb3a9622e877772598d1cac124266b2b8a (diff) | |
download | linux-848955ccf0bdf42fff33e021a76f6daec98fe59b.tar.gz linux-848955ccf0bdf42fff33e021a76f6daec98fe59b.tar.bz2 linux-848955ccf0bdf42fff33e021a76f6daec98fe59b.zip |
mac80211: move U-APSD enablement to vif flags
In order to let drivers have more dynamic U-APSD support,
move the enablement flag to the virtual interface driver
flags. This lets drivers not only set it up differently
for different interfaces, but also enable/disable on the
fly if needed.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/debugfs.c')
-rw-r--r-- | net/mac80211/debugfs.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/mac80211/debugfs.c b/net/mac80211/debugfs.c index 54a189f0393e..eeb0bbd69d98 100644 --- a/net/mac80211/debugfs.c +++ b/net/mac80211/debugfs.c @@ -303,8 +303,6 @@ static ssize_t hwflags_read(struct file *file, char __user *user_buf, sf += scnprintf(buf + sf, mxln - sf, "SUPPORTS_DYNAMIC_PS\n"); if (local->hw.flags & IEEE80211_HW_MFP_CAPABLE) sf += scnprintf(buf + sf, mxln - sf, "MFP_CAPABLE\n"); - if (local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD) - sf += scnprintf(buf + sf, mxln - sf, "SUPPORTS_UAPSD\n"); if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) sf += scnprintf(buf + sf, mxln - sf, "REPORTS_TX_ACK_STATUS\n"); |