diff options
author | David Woodhouse <dwmw2@infradead.org> | 2007-05-25 23:39:34 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-06-11 14:28:45 -0400 |
commit | 86760088a7c51ccc263ec3b8039ec9a7400a6d70 (patch) | |
tree | 157ab4fcd3bfbf20277099bef6cf4438fcfdac86 | |
parent | bb793e2bfc25b8891b84b8fe3cb4b77cd4619814 (diff) |
[PATCH] libertas: more endianness fixes, in tx.c this time
Now we finally get connectivity. For a while, before something else dies...
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-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) { |