LinuxKPI: 80211: add ieee80211_stop_tx_ba_session()

rtw89 needs ieee80211_stop_tx_ba_session().
Add the skeleton function for now so we can implement BA functions all
together.

MFC after:	3 days
This commit is contained in:
Bjoern A. Zeeb 2022-09-09 16:30:00 +00:00
parent c8bc874172
commit d6d687daaa

View File

@ -2041,6 +2041,13 @@ ieee80211_start_tx_ba_session(struct ieee80211_sta *sta, uint8_t tid, int x)
return (-EINVAL);
}
static __inline int
ieee80211_stop_tx_ba_session(struct ieee80211_sta *sta, uint8_t tid)
{
TODO();
return (-EINVAL);
}
static __inline void
ieee80211_tx_info_clear_status(struct ieee80211_tx_info *info)
{