aboutsummaryrefslogtreecommitdiffstats
path: root/net/ieee80211
diff options
context:
space:
mode:
authorJohn W. Linville <linville@tuxdriver.com>2006-02-27 20:13:10 -0500
committerJohn W. Linville <linville@tuxdriver.com>2006-02-27 20:13:10 -0500
commitacfaf10be5c19f7dceb9d7372039dc45af66b100 (patch)
tree75dce83cc4495a13056fde1c2166323e07373858 /net/ieee80211
parentc45ae87ec9d03c9adfc466a6b560cb38b154813a (diff)
parent4832843d773462643cc471ca715382f5e509afb3 (diff)
Merge branch 'upstream-fixes'
Diffstat (limited to 'net/ieee80211')
-rw-r--r--net/ieee80211/ieee80211_rx.c16
1 files changed, 5 insertions, 11 deletions
diff --git a/net/ieee80211/ieee80211_rx.c b/net/ieee80211/ieee80211_rx.c
index fcf4382ef7d..6b8469da29b 100644
--- a/net/ieee80211/ieee80211_rx.c
+++ b/net/ieee80211/ieee80211_rx.c
@@ -1394,7 +1394,7 @@ static void update_network(struct ieee80211_network *dst,
1394 /* dst->last_associate is not overwritten */ 1394 /* dst->last_associate is not overwritten */
1395} 1395}
1396 1396
1397static inline int is_beacon(int fc) 1397static inline int is_beacon(__le16 fc)
1398{ 1398{
1399 return (WLAN_FC_GET_STYPE(le16_to_cpu(fc)) == IEEE80211_STYPE_BEACON); 1399 return (WLAN_FC_GET_STYPE(le16_to_cpu(fc)) == IEEE80211_STYPE_BEACON);
1400} 1400}
@@ -1443,9 +1443,7 @@ static void ieee80211_process_probe_response(struct ieee80211_device
1443 escape_essid(info_element->data, 1443 escape_essid(info_element->data,
1444 info_element->len), 1444 info_element->len),
1445 MAC_ARG(beacon->header.addr3), 1445 MAC_ARG(beacon->header.addr3),
1446 is_beacon(le16_to_cpu 1446 is_beacon(beacon->header.frame_ctl) ?
1447 (beacon->header.
1448 frame_ctl)) ?
1449 "BEACON" : "PROBE RESPONSE"); 1447 "BEACON" : "PROBE RESPONSE");
1450 return; 1448 return;
1451 } 1449 }
@@ -1496,9 +1494,7 @@ static void ieee80211_process_probe_response(struct ieee80211_device
1496 escape_essid(network.ssid, 1494 escape_essid(network.ssid,
1497 network.ssid_len), 1495 network.ssid_len),
1498 MAC_ARG(network.bssid), 1496 MAC_ARG(network.bssid),
1499 is_beacon(le16_to_cpu 1497 is_beacon(beacon->header.frame_ctl) ?
1500 (beacon->header.
1501 frame_ctl)) ?
1502 "BEACON" : "PROBE RESPONSE"); 1498 "BEACON" : "PROBE RESPONSE");
1503#endif 1499#endif
1504 memcpy(target, &network, sizeof(*target)); 1500 memcpy(target, &network, sizeof(*target));
@@ -1509,9 +1505,7 @@ static void ieee80211_process_probe_response(struct ieee80211_device
1509 escape_essid(target->ssid, 1505 escape_essid(target->ssid,
1510 target->ssid_len), 1506 target->ssid_len),
1511 MAC_ARG(target->bssid), 1507 MAC_ARG(target->bssid),
1512 is_beacon(le16_to_cpu 1508 is_beacon(beacon->header.frame_ctl) ?
1513 (beacon->header.
1514 frame_ctl)) ?
1515 "BEACON" : "PROBE RESPONSE"); 1509 "BEACON" : "PROBE RESPONSE");
1516 update_network(target, &network); 1510 update_network(target, &network);
1517 network.ibss_dfs = NULL; 1511 network.ibss_dfs = NULL;
@@ -1519,7 +1513,7 @@ static void ieee80211_process_probe_response(struct ieee80211_device
1519 1513
1520 spin_unlock_irqrestore(&ieee->lock, flags); 1514 spin_unlock_irqrestore(&ieee->lock, flags);
1521 1515
1522 if (is_beacon(le16_to_cpu(beacon->header.frame_ctl))) { 1516 if (is_beacon(beacon->header.frame_ctl)) {
1523 if (ieee->handle_beacon != NULL) 1517 if (ieee->handle_beacon != NULL)
1524 ieee->handle_beacon(dev, beacon, &network); 1518 ieee->handle_beacon(dev, beacon, &network);
1525 } else { 1519 } else {