OSDN Git Service

net: seeq: Use %pM format specifier for MAC addresses
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 18 May 2020 19:21:28 +0000 (22:21 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 19 May 2020 00:43:13 +0000 (17:43 -0700)
Convert to %pM instead of using custom code.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/seeq/ether3.c

index 128ee7c..65c9883 100644 (file)
@@ -610,12 +610,9 @@ static int ether3_rx(struct net_device *dev, unsigned int maxcnt)
                ether3_readbuffer(dev, addrs+2, 12);
 
 if (next_ptr < RX_START || next_ptr >= RX_END) {
- int i;
  printk("%s: bad next pointer @%04X: ", dev->name, priv(dev)->rx_head);
  printk("%02X %02X %02X %02X ", next_ptr >> 8, next_ptr & 255, status & 255, status >> 8);
- for (i = 2; i < 14; i++)
-   printk("%02X ", addrs[i]);
- printk("\n");
+ printk("%pM %pM\n", addrs + 2, addrs + 8);
  next_ptr = priv(dev)->rx_head;
  break;
 }