diff options
Diffstat (limited to 'net/mac80211/driver-ops.h')
| -rw-r--r-- | net/mac80211/driver-ops.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/mac80211/driver-ops.h b/net/mac80211/driver-ops.h index 020a94a31106..921dd9c9ff62 100644 --- a/net/mac80211/driver-ops.h +++ b/net/mac80211/driver-ops.h | |||
| @@ -239,15 +239,16 @@ static inline int drv_tx_last_beacon(struct ieee80211_local *local) | |||
| 239 | } | 239 | } |
| 240 | 240 | ||
| 241 | static inline int drv_ampdu_action(struct ieee80211_local *local, | 241 | static inline int drv_ampdu_action(struct ieee80211_local *local, |
| 242 | struct ieee80211_vif *vif, | ||
| 242 | enum ieee80211_ampdu_mlme_action action, | 243 | enum ieee80211_ampdu_mlme_action action, |
| 243 | struct ieee80211_sta *sta, u16 tid, | 244 | struct ieee80211_sta *sta, u16 tid, |
| 244 | u16 *ssn) | 245 | u16 *ssn) |
| 245 | { | 246 | { |
| 246 | int ret = -EOPNOTSUPP; | 247 | int ret = -EOPNOTSUPP; |
| 247 | if (local->ops->ampdu_action) | 248 | if (local->ops->ampdu_action) |
| 248 | ret = local->ops->ampdu_action(&local->hw, action, | 249 | ret = local->ops->ampdu_action(&local->hw, vif, action, |
| 249 | sta, tid, ssn); | 250 | sta, tid, ssn); |
| 250 | trace_drv_ampdu_action(local, action, sta, tid, ssn, ret); | 251 | trace_drv_ampdu_action(local, vif, action, sta, tid, ssn, ret); |
| 251 | return ret; | 252 | return ret; |
| 252 | } | 253 | } |
| 253 | 254 | ||
