ipw2200: ipw_tx_skb() endianness bug
We'd just set tfd->u.data.chunk_len[i] to cpu_to_le16(remaining_bytes); passing it to pci_map_single() is a bad idea - it expects host-endian. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
472caf8c8a
commit
4958730e2b
|
@ -10341,7 +10341,7 @@ static int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
|
|||
tfd->u.data.chunk_ptr[i] =
|
||||
cpu_to_le32(pci_map_single
|
||||
(priv->pci_dev, skb->data,
|
||||
tfd->u.data.chunk_len[i],
|
||||
remaining_bytes,
|
||||
PCI_DMA_TODEVICE));
|
||||
|
||||
tfd->u.data.num_chunks =
|
||||
|
|
Loading…
Reference in New Issue