From: David Woodhouse Date: Sat, 26 May 2007 03:39:34 +0000 (-0400) Subject: [PATCH] libertas: more endianness fixes, in tx.c this time X-Git-Tag: v2.6.22-rc5~44^2~2^2~6 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=86760088a7c51ccc263ec3b8039ec9a7400a6d70;p=karo-tx-linux.git [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 Signed-off-by: John W. Linville --- 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) /* skip the radiotap header */ p802x_hdr += sizeof(struct tx_radiotap_hdr); plocaltxpd->tx_packet_length = - cpu_to_le32(le32_to_cpu(plocaltxpd->tx_packet_length) + cpu_to_le16(le16_to_cpu(plocaltxpd->tx_packet_length) - sizeof(struct tx_radiotap_hdr)); } @@ -130,11 +130,11 @@ static int SendSinglePacket(wlan_private * priv, struct sk_buff *skb) ptr += sizeof(struct txpd); - lbs_dbg_hex("Tx Data", (u8 *) p802x_hdr, le32_to_cpu(plocaltxpd->tx_packet_length)); - memcpy(ptr, p802x_hdr, le32_to_cpu(plocaltxpd->tx_packet_length)); + lbs_dbg_hex("Tx Data", (u8 *) p802x_hdr, le16_to_cpu(plocaltxpd->tx_packet_length)); + memcpy(ptr, p802x_hdr, le16_to_cpu(plocaltxpd->tx_packet_length)); ret = priv->hw_host_to_card(priv, MVMS_DAT, priv->adapter->tmptxbuf, - le32_to_cpu(plocaltxpd->tx_packet_length) + + le16_to_cpu(plocaltxpd->tx_packet_length) + sizeof(struct txpd)); if (ret) {