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/tulip/xircom_cb.c | |
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/tulip/xircom_cb.c')
-rw-r--r-- | drivers/net/tulip/xircom_cb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/tulip/xircom_cb.c b/drivers/net/tulip/xircom_cb.c index 6b93d0169116..3c0b96b0e925 100644 --- a/drivers/net/tulip/xircom_cb.c +++ b/drivers/net/tulip/xircom_cb.c | |||
@@ -1072,7 +1072,6 @@ static void read_mac_address(struct xircom_private *card) | |||
1072 | unsigned char j, tuple, link, data_id, data_count; | 1072 | unsigned char j, tuple, link, data_id, data_count; |
1073 | unsigned long flags; | 1073 | unsigned long flags; |
1074 | int i; | 1074 | int i; |
1075 | DECLARE_MAC_BUF(mac); | ||
1076 | 1075 | ||
1077 | enter("read_mac_address"); | 1076 | enter("read_mac_address"); |
1078 | 1077 | ||
@@ -1102,7 +1101,7 @@ static void read_mac_address(struct xircom_private *card) | |||
1102 | } | 1101 | } |
1103 | } | 1102 | } |
1104 | spin_unlock_irqrestore(&card->lock, flags); | 1103 | spin_unlock_irqrestore(&card->lock, flags); |
1105 | pr_debug(" %s\n", print_mac(mac, card->dev->dev_addr)); | 1104 | pr_debug(" %pM\n", card->dev->dev_addr); |
1106 | leave("read_mac_address"); | 1105 | leave("read_mac_address"); |
1107 | } | 1106 | } |
1108 | 1107 | ||