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>
这个提交包含在:
@@ -1020,7 +1020,6 @@ wv_82593_reconfig(struct net_device * dev)
|
||||
static void
|
||||
wv_psa_show(psa_t * p)
|
||||
{
|
||||
DECLARE_MAC_BUF(mac);
|
||||
printk(KERN_DEBUG "##### wavelan psa contents: #####\n");
|
||||
printk(KERN_DEBUG "psa_io_base_addr_1: 0x%02X %02X %02X %02X\n",
|
||||
p->psa_io_base_addr_1,
|
||||
@@ -1034,13 +1033,10 @@ wv_psa_show(psa_t * p)
|
||||
printk(KERN_DEBUG "psa_holi_params: 0x%02x, ", p->psa_holi_params);
|
||||
printk("psa_int_req_no: %d\n", p->psa_int_req_no);
|
||||
#ifdef DEBUG_SHOW_UNUSED
|
||||
printk(KERN_DEBUG "psa_unused0[]: %s\n",
|
||||
print_mac(mac, p->psa_unused0));
|
||||
printk(KERN_DEBUG "psa_unused0[]: %pM\n", p->psa_unused0);
|
||||
#endif /* DEBUG_SHOW_UNUSED */
|
||||
printk(KERN_DEBUG "psa_univ_mac_addr[]: %s\n",
|
||||
print_mac(mac, p->psa_univ_mac_addr));
|
||||
printk(KERN_DEBUG "psa_local_mac_addr[]: %s\n",
|
||||
print_mac(mac, p->psa_local_mac_addr));
|
||||
printk(KERN_DEBUG "psa_univ_mac_addr[]: %pM\n", p->psa_univ_mac_addr);
|
||||
printk(KERN_DEBUG "psa_local_mac_addr[]: %pM\n", p->psa_local_mac_addr);
|
||||
printk(KERN_DEBUG "psa_univ_local_sel: %d, ", p->psa_univ_local_sel);
|
||||
printk("psa_comp_number: %d, ", p->psa_comp_number);
|
||||
printk("psa_thr_pre_set: 0x%02x\n", p->psa_thr_pre_set);
|
||||
@@ -1238,12 +1234,11 @@ wv_packet_info(u_char * p, /* Packet to dump */
|
||||
{
|
||||
int i;
|
||||
int maxi;
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
printk(KERN_DEBUG "%s: %s(): dest %s, length %d\n",
|
||||
msg1, msg2, print_mac(mac, p), length);
|
||||
printk(KERN_DEBUG "%s: %s(): src %s, type 0x%02X%02X\n",
|
||||
msg1, msg2, print_mac(mac, &p[6]), p[12], p[13]);
|
||||
printk(KERN_DEBUG "%s: %s(): dest %pM, length %d\n",
|
||||
msg1, msg2, p, length);
|
||||
printk(KERN_DEBUG "%s: %s(): src %pM, type 0x%02X%02X\n",
|
||||
msg1, msg2, &p[6], p[12], p[13]);
|
||||
|
||||
#ifdef DEBUG_PACKET_DUMP
|
||||
|
||||
@@ -1274,7 +1269,6 @@ wv_init_info(struct net_device * dev)
|
||||
{
|
||||
unsigned int base = dev->base_addr;
|
||||
psa_t psa;
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
/* Read the parameter storage area */
|
||||
psa_read(dev, 0, (unsigned char *) &psa, sizeof(psa));
|
||||
@@ -1291,10 +1285,8 @@ wv_init_info(struct net_device * dev)
|
||||
|
||||
#ifdef DEBUG_BASIC_SHOW
|
||||
/* Now, let's go for the basic stuff */
|
||||
printk(KERN_NOTICE "%s: WaveLAN: port %#x, irq %d, "
|
||||
"hw_addr %s",
|
||||
dev->name, base, dev->irq,
|
||||
print_mac(mac, dev->dev_addr));
|
||||
printk(KERN_NOTICE "%s: WaveLAN: port %#x, irq %d, hw_addr %pM",
|
||||
dev->name, base, dev->irq, dev->dev_addr);
|
||||
|
||||
/* Print current network id */
|
||||
if(psa.psa_nwid_select)
|
||||
@@ -3647,12 +3639,10 @@ wv_82593_config(struct net_device * dev)
|
||||
int addrs_len = WAVELAN_ADDR_SIZE * lp->mc_count;
|
||||
|
||||
#ifdef DEBUG_CONFIG_INFO
|
||||
DECLARE_MAC_BUF(mac);
|
||||
printk(KERN_DEBUG "%s: wv_hw_config(): set %d multicast addresses:\n",
|
||||
dev->name, lp->mc_count);
|
||||
for(dmi=dev->mc_list; dmi; dmi=dmi->next)
|
||||
printk(KERN_DEBUG " %s\n",
|
||||
print_mac(mac, dmi->dmi_addr));
|
||||
printk(KERN_DEBUG " %pM\n", dmi->dmi_addr);
|
||||
#endif
|
||||
|
||||
/* Initialize adapter's ethernet multicast addresses */
|
||||
|
在新工单中引用
屏蔽一个用户