staging: vt6656: Remove preamble_type setting from vnt_tx_packet.
preamble_type is set in vnt_bss_info_changed no need to set it here. Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Link: https://lore.kernel.org/r/04874ae5-0859-7cb5-619a-ac96a207be5d@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7d1a8c9849
commit
9075e3180e
|
@ -735,11 +735,6 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)
|
|||
if (ieee80211_has_retry(hdr->frame_control))
|
||||
tx_buffer_head->fifo_ctl |= cpu_to_le16(FIFOCTL_LRETRY);
|
||||
|
||||
if (tx_rate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
|
||||
priv->preamble_type = PREAMBLE_SHORT;
|
||||
else
|
||||
priv->preamble_type = PREAMBLE_LONG;
|
||||
|
||||
if (tx_rate->flags & IEEE80211_TX_RC_USE_RTS_CTS) {
|
||||
need_rts = true;
|
||||
tx_buffer_head->fifo_ctl |= cpu_to_le16(FIFOCTL_RTS);
|
||||
|
|
Loading…
Reference in New Issue