mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 14:26:03 -04:00
LinuxKPI: 802.11: add condition to TODO in ieee80211_sta_recalc_aggregates
ieee80211_sta_recalc_aggregates() shows up in TODO traces but there is nothing we have to do there until we have active links (MLO support). Make the TODO conditional for a time when we will get there. Sponsored by: The FreeBSD Foundation MFC after: 3 days
This commit is contained in:
parent
a6994e208c
commit
72ee3d57f3
1 changed files with 4 additions and 2 deletions
|
|
@ -2043,10 +2043,12 @@ ieee80211_sta_pspoll(struct ieee80211_sta *sta)
|
|||
TODO();
|
||||
}
|
||||
|
||||
static __inline void
|
||||
static inline void
|
||||
ieee80211_sta_recalc_aggregates(struct ieee80211_sta *sta)
|
||||
{
|
||||
TODO();
|
||||
if (sta->valid_links) {
|
||||
TODO();
|
||||
}
|
||||
}
|
||||
|
||||
static __inline void
|
||||
|
|
|
|||
Loading…
Reference in a new issue