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

Commit 85359499 authored by Kalle Valo's avatar Kalle Valo Committed by John W. Linville
Browse files

wl1251: fix txop unit



mac80211 uses unit units of 32 usec with txop but wl1251_acx_ac_cfg()
expects it to be usecs. This fortunately didn't cause any severe problems,
only that firmware was using incorrect WMM settings.

Signed-off-by: default avatarKalle Valo <kalle.valo@nokia.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 40bd5203
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1144,9 +1144,10 @@ static int wl1251_op_conf_tx(struct ieee80211_hw *hw, u16 queue,
	if (ret < 0)
		goto out;

	/* mac80211 uses units of 32 usec */
	ret = wl1251_acx_ac_cfg(wl, wl1251_tx_get_queue(queue),
				params->cw_min, params->cw_max,
				params->aifs, params->txop);
				params->aifs, params->txop * 32);
	if (ret < 0)
		goto out_sleep;