提交 e0c0056c 编写于 作者: A Al Viro 提交者: David S. Miller

hostap: fix endianness with txdesc->sw_support

it's le32, not le16...
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
上级 2ab1f519
...@@ -1852,7 +1852,7 @@ static int prism2_tx_80211(struct sk_buff *skb, struct net_device *dev) ...@@ -1852,7 +1852,7 @@ static int prism2_tx_80211(struct sk_buff *skb, struct net_device *dev)
tx_control = local->tx_control; tx_control = local->tx_control;
if (meta->tx_cb_idx) { if (meta->tx_cb_idx) {
tx_control |= HFA384X_TX_CTRL_TX_OK; tx_control |= HFA384X_TX_CTRL_TX_OK;
txdesc.sw_support = cpu_to_le16(meta->tx_cb_idx); txdesc.sw_support = cpu_to_le32(meta->tx_cb_idx);
} }
txdesc.tx_control = cpu_to_le16(tx_control); txdesc.tx_control = cpu_to_le16(tx_control);
txdesc.tx_rate = meta->rate; txdesc.tx_rate = meta->rate;
...@@ -2190,7 +2190,7 @@ static void hostap_tx_callback(local_info_t *local, ...@@ -2190,7 +2190,7 @@ static void hostap_tx_callback(local_info_t *local,
return; return;
} }
sw_support = le16_to_cpu(txdesc->sw_support); sw_support = le32_to_cpu(txdesc->sw_support);
spin_lock(&local->lock); spin_lock(&local->lock);
cb = local->tx_callback; cb = local->tx_callback;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册