Staging: et131x_netdev.c: use %pM to shown MAC address
Trivial, use the %pM kernel extension to display the MAC address. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Olaf Hartmann <o.hartmann@telovital.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
1c7e4a7c32
commit
28a2333413
@ -674,12 +674,8 @@ int et131x_set_mac_addr(struct net_device *netdev, void *new_mac)
|
||||
|
||||
memcpy(netdev->dev_addr, address->sa_data, netdev->addr_len);
|
||||
|
||||
printk(KERN_INFO
|
||||
"%s: Setting MAC address to %02x:%02x:%02x:%02x:%02x:%02x\n",
|
||||
netdev->name,
|
||||
netdev->dev_addr[0], netdev->dev_addr[1],
|
||||
netdev->dev_addr[2], netdev->dev_addr[3],
|
||||
netdev->dev_addr[4], netdev->dev_addr[5]);
|
||||
printk(KERN_INFO "%s: Setting MAC address to %pM\n",
|
||||
netdev->name, netdev->dev_addr);
|
||||
|
||||
/* Free Rx DMA memory */
|
||||
et131x_adapter_memory_free(adapter);
|
||||
|
Loading…
Reference in New Issue
Block a user