Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c384053 authored by Vasanthakumar's avatar Vasanthakumar Committed by John W. Linville
Browse files

mac80211: Don't call rate control when HW handles it



Rate control should not be called to update the tx status
when HW does the RC.

Signed-off-by: default avatarVasanthakumar <vasanth@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent b4d57adb
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -44,6 +44,10 @@ static inline void rate_control_tx_status(struct ieee80211_local *local,
	struct rate_control_ref *ref = local->rate_ctrl;
	struct ieee80211_sta *ista = &sta->sta;
	void *priv_sta = sta->rate_ctrl_priv;

	if (!ref)
		return;

	ref->ops->tx_status(ref->priv, sband, ista, priv_sta, skb);
}