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:
Bjoern A. Zeeb 2025-02-22 23:31:46 +00:00
parent a6994e208c
commit 72ee3d57f3

View file

@ -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