mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
rtl8xxxu: tx rate reported before set
Move the dev_info call that attempts to show the rate used before it is set. Signed-off-by: Barry Day <briselec@gmail.com> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Barry Day <briselec@gmail.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
4c0bfeaae9
commit
c06696a958
@ -4844,16 +4844,16 @@ rtl8xxxu_fill_txdesc_v2(struct ieee80211_hw *hw, struct ieee80211_hdr *hdr,
|
|||||||
|
|
||||||
tx_desc40 = (struct rtl8xxxu_txdesc40 *)tx_desc32;
|
tx_desc40 = (struct rtl8xxxu_txdesc40 *)tx_desc32;
|
||||||
|
|
||||||
if (rtl8xxxu_debug & RTL8XXXU_DEBUG_TX)
|
|
||||||
dev_info(dev, "%s: TX rate: %d, pkt size %d\n",
|
|
||||||
__func__, rate, cpu_to_le16(tx_desc40->pkt_size));
|
|
||||||
|
|
||||||
if (rate_flags & IEEE80211_TX_RC_MCS &&
|
if (rate_flags & IEEE80211_TX_RC_MCS &&
|
||||||
!ieee80211_is_mgmt(hdr->frame_control))
|
!ieee80211_is_mgmt(hdr->frame_control))
|
||||||
rate = tx_info->control.rates[0].idx + DESC_RATE_MCS0;
|
rate = tx_info->control.rates[0].idx + DESC_RATE_MCS0;
|
||||||
else
|
else
|
||||||
rate = tx_rate->hw_value;
|
rate = tx_rate->hw_value;
|
||||||
|
|
||||||
|
if (rtl8xxxu_debug & RTL8XXXU_DEBUG_TX)
|
||||||
|
dev_info(dev, "%s: TX rate: %d, pkt size %d\n",
|
||||||
|
__func__, rate, cpu_to_le16(tx_desc40->pkt_size));
|
||||||
|
|
||||||
seq_number = IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr->seq_ctrl));
|
seq_number = IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr->seq_ctrl));
|
||||||
|
|
||||||
tx_desc40->txdw4 = cpu_to_le32(rate);
|
tx_desc40->txdw4 = cpu_to_le32(rate);
|
||||||
|
Loading…
Reference in New Issue
Block a user