diff options
Diffstat (limited to 'drivers/net/wireless/libertas/tx.c')
-rw-r--r-- | drivers/net/wireless/libertas/tx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/libertas/tx.c b/drivers/net/wireless/libertas/tx.c index 10d1db0ab3a6..17c437635a00 100644 --- a/drivers/net/wireless/libertas/tx.c +++ b/drivers/net/wireless/libertas/tx.c | |||
@@ -110,7 +110,7 @@ static int SendSinglePacket(wlan_private * priv, struct sk_buff *skb) | |||
110 | /* skip the radiotap header */ | 110 | /* skip the radiotap header */ |
111 | p802x_hdr += sizeof(struct tx_radiotap_hdr); | 111 | p802x_hdr += sizeof(struct tx_radiotap_hdr); |
112 | plocaltxpd->tx_packet_length = | 112 | plocaltxpd->tx_packet_length = |
113 | cpu_to_le32(le32_to_cpu(plocaltxpd->tx_packet_length) | 113 | cpu_to_le16(le16_to_cpu(plocaltxpd->tx_packet_length) |
114 | - sizeof(struct tx_radiotap_hdr)); | 114 | - sizeof(struct tx_radiotap_hdr)); |
115 | 115 | ||
116 | } | 116 | } |
@@ -130,11 +130,11 @@ static int SendSinglePacket(wlan_private * priv, struct sk_buff *skb) | |||
130 | 130 | ||
131 | ptr += sizeof(struct txpd); | 131 | ptr += sizeof(struct txpd); |
132 | 132 | ||
133 | lbs_dbg_hex("Tx Data", (u8 *) p802x_hdr, le32_to_cpu(plocaltxpd->tx_packet_length)); | 133 | lbs_dbg_hex("Tx Data", (u8 *) p802x_hdr, le16_to_cpu(plocaltxpd->tx_packet_length)); |
134 | memcpy(ptr, p802x_hdr, le32_to_cpu(plocaltxpd->tx_packet_length)); | 134 | memcpy(ptr, p802x_hdr, le16_to_cpu(plocaltxpd->tx_packet_length)); |
135 | ret = priv->hw_host_to_card(priv, MVMS_DAT, | 135 | ret = priv->hw_host_to_card(priv, MVMS_DAT, |
136 | priv->adapter->tmptxbuf, | 136 | priv->adapter->tmptxbuf, |
137 | le32_to_cpu(plocaltxpd->tx_packet_length) + | 137 | le16_to_cpu(plocaltxpd->tx_packet_length) + |
138 | sizeof(struct txpd)); | 138 | sizeof(struct txpd)); |
139 | 139 | ||
140 | if (ret) { | 140 | if (ret) { |