diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2008-10-27 18:59:26 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-27 20:06:18 -0400 |
commit | e174961ca1a0b28f7abf0be47973ad57cb74e5f0 (patch) | |
tree | e8f74ecd420a0e380a71670e5aec5c2a0c15640a /drivers/net/wireless/prism54 | |
parent | 0c68ae2605dbcf67414d8d1f19af93be44b355fb (diff) |
net: convert print_mac to %pM
This converts pretty much everything to print_mac. There were
a few things that had conflicts which I have just dropped for
now, no harm done.
I've built an allyesconfig with this and looked at the files
that weren't built very carefully, but it's a huge patch.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/prism54')
-rw-r--r-- | drivers/net/wireless/prism54/isl_ioctl.c | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/drivers/net/wireless/prism54/isl_ioctl.c b/drivers/net/wireless/prism54/isl_ioctl.c index 16e68f4b654a..57a150a22de5 100644 --- a/drivers/net/wireless/prism54/isl_ioctl.c +++ b/drivers/net/wireless/prism54/isl_ioctl.c | |||
@@ -2028,12 +2028,11 @@ static void | |||
2028 | format_event(islpci_private *priv, char *dest, const char *str, | 2028 | format_event(islpci_private *priv, char *dest, const char *str, |
2029 | const struct obj_mlme *mlme, u16 *length, int error) | 2029 | const struct obj_mlme *mlme, u16 *length, int error) |
2030 | { | 2030 | { |
2031 | DECLARE_MAC_BUF(mac); | ||
2032 | int n = snprintf(dest, IW_CUSTOM_MAX, | 2031 | int n = snprintf(dest, IW_CUSTOM_MAX, |
2033 | "%s %s %s %s (%2.2X)", | 2032 | "%s %s %pM %s (%2.2X)", |
2034 | str, | 2033 | str, |
2035 | ((priv->iw_mode == IW_MODE_MASTER) ? "from" : "to"), | 2034 | ((priv->iw_mode == IW_MODE_MASTER) ? "from" : "to"), |
2036 | print_mac(mac, mlme->address), | 2035 | mlme->address, |
2037 | (error ? (mlme->code ? " : REJECTED " : " : ACCEPTED ") | 2036 | (error ? (mlme->code ? " : REJECTED " : " : ACCEPTED ") |
2038 | : ""), mlme->code); | 2037 | : ""), mlme->code); |
2039 | BUG_ON(n > IW_CUSTOM_MAX); | 2038 | BUG_ON(n > IW_CUSTOM_MAX); |
@@ -2113,7 +2112,6 @@ prism54_wpa_bss_ie_add(islpci_private *priv, u8 *bssid, | |||
2113 | { | 2112 | { |
2114 | struct list_head *ptr; | 2113 | struct list_head *ptr; |
2115 | struct islpci_bss_wpa_ie *bss = NULL; | 2114 | struct islpci_bss_wpa_ie *bss = NULL; |
2116 | DECLARE_MAC_BUF(mac); | ||
2117 | 2115 | ||
2118 | if (wpa_ie_len > MAX_WPA_IE_LEN) | 2116 | if (wpa_ie_len > MAX_WPA_IE_LEN) |
2119 | wpa_ie_len = MAX_WPA_IE_LEN; | 2117 | wpa_ie_len = MAX_WPA_IE_LEN; |
@@ -2154,7 +2152,7 @@ prism54_wpa_bss_ie_add(islpci_private *priv, u8 *bssid, | |||
2154 | bss->last_update = jiffies; | 2152 | bss->last_update = jiffies; |
2155 | } else { | 2153 | } else { |
2156 | printk(KERN_DEBUG "Failed to add BSS WPA entry for " | 2154 | printk(KERN_DEBUG "Failed to add BSS WPA entry for " |
2157 | "%s\n", print_mac(mac, bssid)); | 2155 | "%pM\n", bssid); |
2158 | } | 2156 | } |
2159 | 2157 | ||
2160 | /* expire old entries from WPA list */ | 2158 | /* expire old entries from WPA list */ |
@@ -2219,7 +2217,6 @@ prism54_process_bss_data(islpci_private *priv, u32 oid, u8 *addr, | |||
2219 | { | 2217 | { |
2220 | struct ieee80211_beacon_phdr *hdr; | 2218 | struct ieee80211_beacon_phdr *hdr; |
2221 | u8 *pos, *end; | 2219 | u8 *pos, *end; |
2222 | DECLARE_MAC_BUF(mac); | ||
2223 | 2220 | ||
2224 | if (!priv->wpa) | 2221 | if (!priv->wpa) |
2225 | return; | 2222 | return; |
@@ -2230,7 +2227,7 @@ prism54_process_bss_data(islpci_private *priv, u32 oid, u8 *addr, | |||
2230 | while (pos < end) { | 2227 | while (pos < end) { |
2231 | if (pos + 2 + pos[1] > end) { | 2228 | if (pos + 2 + pos[1] > end) { |
2232 | printk(KERN_DEBUG "Parsing Beacon/ProbeResp failed " | 2229 | printk(KERN_DEBUG "Parsing Beacon/ProbeResp failed " |
2233 | "for %s\n", print_mac(mac, addr)); | 2230 | "for %pM\n", addr); |
2234 | return; | 2231 | return; |
2235 | } | 2232 | } |
2236 | if (pos[0] == WLAN_EID_GENERIC && pos[1] >= 4 && | 2233 | if (pos[0] == WLAN_EID_GENERIC && pos[1] >= 4 && |
@@ -2269,7 +2266,6 @@ prism54_process_trap_helper(islpci_private *priv, enum oid_num_t oid, | |||
2269 | size_t len = 0; /* u16, better? */ | 2266 | size_t len = 0; /* u16, better? */ |
2270 | u8 *payload = NULL, *pos = NULL; | 2267 | u8 *payload = NULL, *pos = NULL; |
2271 | int ret; | 2268 | int ret; |
2272 | DECLARE_MAC_BUF(mac); | ||
2273 | 2269 | ||
2274 | /* I think all trapable objects are listed here. | 2270 | /* I think all trapable objects are listed here. |
2275 | * Some oids have a EX version. The difference is that they are emitted | 2271 | * Some oids have a EX version. The difference is that they are emitted |
@@ -2358,8 +2354,8 @@ prism54_process_trap_helper(islpci_private *priv, enum oid_num_t oid, | |||
2358 | break; | 2354 | break; |
2359 | 2355 | ||
2360 | memcpy(&confirm->address, mlmeex->address, ETH_ALEN); | 2356 | memcpy(&confirm->address, mlmeex->address, ETH_ALEN); |
2361 | printk(KERN_DEBUG "Authenticate from: address:\t%s\n", | 2357 | printk(KERN_DEBUG "Authenticate from: address:\t%pM\n", |
2362 | print_mac(mac, mlmeex->address)); | 2358 | mlmeex->address); |
2363 | confirm->id = -1; /* or mlmeex->id ? */ | 2359 | confirm->id = -1; /* or mlmeex->id ? */ |
2364 | confirm->state = 0; /* not used */ | 2360 | confirm->state = 0; /* not used */ |
2365 | confirm->code = 0; | 2361 | confirm->code = 0; |
@@ -2404,8 +2400,8 @@ prism54_process_trap_helper(islpci_private *priv, enum oid_num_t oid, | |||
2404 | wpa_ie_len = prism54_wpa_bss_ie_get(priv, mlmeex->address, wpa_ie); | 2400 | wpa_ie_len = prism54_wpa_bss_ie_get(priv, mlmeex->address, wpa_ie); |
2405 | 2401 | ||
2406 | if (!wpa_ie_len) { | 2402 | if (!wpa_ie_len) { |
2407 | printk(KERN_DEBUG "No WPA IE found from address:\t%s\n", | 2403 | printk(KERN_DEBUG "No WPA IE found from address:\t%pM\n", |
2408 | print_mac(mac, mlmeex->address)); | 2404 | mlmeex->address); |
2409 | kfree(confirm); | 2405 | kfree(confirm); |
2410 | break; | 2406 | break; |
2411 | } | 2407 | } |
@@ -2441,8 +2437,8 @@ prism54_process_trap_helper(islpci_private *priv, enum oid_num_t oid, | |||
2441 | wpa_ie_len = prism54_wpa_bss_ie_get(priv, mlmeex->address, wpa_ie); | 2437 | wpa_ie_len = prism54_wpa_bss_ie_get(priv, mlmeex->address, wpa_ie); |
2442 | 2438 | ||
2443 | if (!wpa_ie_len) { | 2439 | if (!wpa_ie_len) { |
2444 | printk(KERN_DEBUG "No WPA IE found from address:\t%s\n", | 2440 | printk(KERN_DEBUG "No WPA IE found from address:\t%pM\n", |
2445 | print_mac(mac, mlmeex->address)); | 2441 | mlmeex->address); |
2446 | kfree(confirm); | 2442 | kfree(confirm); |
2447 | break; | 2443 | break; |
2448 | } | 2444 | } |