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>
This commit is contained in:

committed by
David S. Miller

parent
0c68ae2605
commit
e174961ca1
@@ -2028,12 +2028,11 @@ static void
|
||||
format_event(islpci_private *priv, char *dest, const char *str,
|
||||
const struct obj_mlme *mlme, u16 *length, int error)
|
||||
{
|
||||
DECLARE_MAC_BUF(mac);
|
||||
int n = snprintf(dest, IW_CUSTOM_MAX,
|
||||
"%s %s %s %s (%2.2X)",
|
||||
"%s %s %pM %s (%2.2X)",
|
||||
str,
|
||||
((priv->iw_mode == IW_MODE_MASTER) ? "from" : "to"),
|
||||
print_mac(mac, mlme->address),
|
||||
mlme->address,
|
||||
(error ? (mlme->code ? " : REJECTED " : " : ACCEPTED ")
|
||||
: ""), mlme->code);
|
||||
BUG_ON(n > IW_CUSTOM_MAX);
|
||||
@@ -2113,7 +2112,6 @@ prism54_wpa_bss_ie_add(islpci_private *priv, u8 *bssid,
|
||||
{
|
||||
struct list_head *ptr;
|
||||
struct islpci_bss_wpa_ie *bss = NULL;
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
if (wpa_ie_len > MAX_WPA_IE_LEN)
|
||||
wpa_ie_len = MAX_WPA_IE_LEN;
|
||||
@@ -2154,7 +2152,7 @@ prism54_wpa_bss_ie_add(islpci_private *priv, u8 *bssid,
|
||||
bss->last_update = jiffies;
|
||||
} else {
|
||||
printk(KERN_DEBUG "Failed to add BSS WPA entry for "
|
||||
"%s\n", print_mac(mac, bssid));
|
||||
"%pM\n", bssid);
|
||||
}
|
||||
|
||||
/* expire old entries from WPA list */
|
||||
@@ -2219,7 +2217,6 @@ prism54_process_bss_data(islpci_private *priv, u32 oid, u8 *addr,
|
||||
{
|
||||
struct ieee80211_beacon_phdr *hdr;
|
||||
u8 *pos, *end;
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
if (!priv->wpa)
|
||||
return;
|
||||
@@ -2230,7 +2227,7 @@ prism54_process_bss_data(islpci_private *priv, u32 oid, u8 *addr,
|
||||
while (pos < end) {
|
||||
if (pos + 2 + pos[1] > end) {
|
||||
printk(KERN_DEBUG "Parsing Beacon/ProbeResp failed "
|
||||
"for %s\n", print_mac(mac, addr));
|
||||
"for %pM\n", addr);
|
||||
return;
|
||||
}
|
||||
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,
|
||||
size_t len = 0; /* u16, better? */
|
||||
u8 *payload = NULL, *pos = NULL;
|
||||
int ret;
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
/* I think all trapable objects are listed here.
|
||||
* 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,
|
||||
break;
|
||||
|
||||
memcpy(&confirm->address, mlmeex->address, ETH_ALEN);
|
||||
printk(KERN_DEBUG "Authenticate from: address:\t%s\n",
|
||||
print_mac(mac, mlmeex->address));
|
||||
printk(KERN_DEBUG "Authenticate from: address:\t%pM\n",
|
||||
mlmeex->address);
|
||||
confirm->id = -1; /* or mlmeex->id ? */
|
||||
confirm->state = 0; /* not used */
|
||||
confirm->code = 0;
|
||||
@@ -2404,8 +2400,8 @@ prism54_process_trap_helper(islpci_private *priv, enum oid_num_t oid,
|
||||
wpa_ie_len = prism54_wpa_bss_ie_get(priv, mlmeex->address, wpa_ie);
|
||||
|
||||
if (!wpa_ie_len) {
|
||||
printk(KERN_DEBUG "No WPA IE found from address:\t%s\n",
|
||||
print_mac(mac, mlmeex->address));
|
||||
printk(KERN_DEBUG "No WPA IE found from address:\t%pM\n",
|
||||
mlmeex->address);
|
||||
kfree(confirm);
|
||||
break;
|
||||
}
|
||||
@@ -2441,8 +2437,8 @@ prism54_process_trap_helper(islpci_private *priv, enum oid_num_t oid,
|
||||
wpa_ie_len = prism54_wpa_bss_ie_get(priv, mlmeex->address, wpa_ie);
|
||||
|
||||
if (!wpa_ie_len) {
|
||||
printk(KERN_DEBUG "No WPA IE found from address:\t%s\n",
|
||||
print_mac(mac, mlmeex->address));
|
||||
printk(KERN_DEBUG "No WPA IE found from address:\t%pM\n",
|
||||
mlmeex->address);
|
||||
kfree(confirm);
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user