summaryrefslogtreecommitdiffstats
path: root/package/kernel/mwlwifi
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2016-01-15 16:58:00 +0000
committerFelix Fietkau <nbd@openwrt.org>2016-01-15 16:58:00 +0000
commitb2e374346bea5a46c4944d9f0bf785b2445ab708 (patch)
tree19541907dc7c55e5c547bb384a76dabb776e85ef /package/kernel/mwlwifi
parentba8a603a49c64eb9a8f0cd959ee2952835796e87 (diff)
downloadmaster-31e0f0ae-b2e374346bea5a46c4944d9f0bf785b2445ab708.tar.gz
master-31e0f0ae-b2e374346bea5a46c4944d9f0bf785b2445ab708.tar.bz2
master-31e0f0ae-b2e374346bea5a46c4944d9f0bf785b2445ab708.zip
mwlwifi: fix build with latest mac80211
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 48251
Diffstat (limited to 'package/kernel/mwlwifi')
-rw-r--r--package/kernel/mwlwifi/patches/110-api_sync.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/package/kernel/mwlwifi/patches/110-api_sync.patch b/package/kernel/mwlwifi/patches/110-api_sync.patch
new file mode 100644
index 0000000000..ed3e06a1c1
--- /dev/null
+++ b/package/kernel/mwlwifi/patches/110-api_sync.patch
@@ -0,0 +1,19 @@
+--- a/mac80211.c
++++ b/mac80211.c
+@@ -597,10 +597,13 @@ static int mwl_mac80211_get_survey(struc
+
+ static int mwl_mac80211_ampdu_action(struct ieee80211_hw *hw,
+ struct ieee80211_vif *vif,
+- enum ieee80211_ampdu_mlme_action action,
+- struct ieee80211_sta *sta,
+- u16 tid, u16 *ssn, u8 buf_size, bool amsdu)
++ struct ieee80211_ampdu_params *params)
+ {
++ enum ieee80211_ampdu_mlme_action action = params->action;
++ struct ieee80211_sta *sta = params->sta;
++ u16 tid = params->tid;
++ u16 *ssn = &params->ssn;
++ u8 buf_size = params->buf_size;
+ int rc = 0;
+ struct mwl_priv *priv = hw->priv;
+ struct mwl_ampdu_stream *stream;