diff options
Diffstat (limited to 'drivers/net/wireless/ipw2200.c')
-rw-r--r-- | drivers/net/wireless/ipw2200.c | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/drivers/net/wireless/ipw2200.c b/drivers/net/wireless/ipw2200.c index 98d6ff69d375..fa87c5c2ae0b 100644 --- a/drivers/net/wireless/ipw2200.c +++ b/drivers/net/wireless/ipw2200.c | |||
@@ -4495,9 +4495,9 @@ static void ipw_rx_notification(struct ipw_priv *priv, | |||
4495 | priv-> | 4495 | priv-> |
4496 | essid_len), | 4496 | essid_len), |
4497 | print_mac(mac, priv->bssid), | 4497 | print_mac(mac, priv->bssid), |
4498 | ntohs(auth->status), | 4498 | le16_to_cpu(auth->status), |
4499 | ipw_get_status_code | 4499 | ipw_get_status_code |
4500 | (ntohs | 4500 | (le16_to_cpu |
4501 | (auth->status))); | 4501 | (auth->status))); |
4502 | 4502 | ||
4503 | priv->status &= | 4503 | priv->status &= |
@@ -4532,9 +4532,9 @@ static void ipw_rx_notification(struct ipw_priv *priv, | |||
4532 | IPW_DL_STATE | | 4532 | IPW_DL_STATE | |
4533 | IPW_DL_ASSOC, | 4533 | IPW_DL_ASSOC, |
4534 | "association failed (0x%04X): %s\n", | 4534 | "association failed (0x%04X): %s\n", |
4535 | ntohs(resp->status), | 4535 | le16_to_cpu(resp->status), |
4536 | ipw_get_status_code | 4536 | ipw_get_status_code |
4537 | (ntohs | 4537 | (le16_to_cpu |
4538 | (resp->status))); | 4538 | (resp->status))); |
4539 | } | 4539 | } |
4540 | 4540 | ||
@@ -4591,8 +4591,8 @@ static void ipw_rx_notification(struct ipw_priv *priv, | |||
4591 | IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE | | 4591 | IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE | |
4592 | IPW_DL_ASSOC, | 4592 | IPW_DL_ASSOC, |
4593 | "authentication failed (0x%04X): %s\n", | 4593 | "authentication failed (0x%04X): %s\n", |
4594 | ntohs(auth->status), | 4594 | le16_to_cpu(auth->status), |
4595 | ipw_get_status_code(ntohs | 4595 | ipw_get_status_code(le16_to_cpu |
4596 | (auth-> | 4596 | (auth-> |
4597 | status))); | 4597 | status))); |
4598 | } | 4598 | } |
@@ -10350,9 +10350,7 @@ static int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb, | |||
10350 | remaining_bytes, | 10350 | remaining_bytes, |
10351 | PCI_DMA_TODEVICE)); | 10351 | PCI_DMA_TODEVICE)); |
10352 | 10352 | ||
10353 | tfd->u.data.num_chunks = | 10353 | le32_add_cpu(&tfd->u.data.num_chunks, 1); |
10354 | cpu_to_le32(le32_to_cpu(tfd->u.data.num_chunks) + | ||
10355 | 1); | ||
10356 | } | 10354 | } |
10357 | } | 10355 | } |
10358 | 10356 | ||