mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 03:50:54 +07:00
usb/cdc_ncm: print MAC via printk format specifier
Print MAC/dev_addr via printk extended format specifier %pM instead of custom code. Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2d5ba83551
commit
517cd81c0a
@ -579,11 +579,7 @@ static int cdc_ncm_bind(struct usbnet *dev, struct usb_interface *intf)
|
||||
if (temp)
|
||||
goto error2;
|
||||
|
||||
dev_info(&dev->udev->dev, "MAC-Address: "
|
||||
"0x%02x:0x%02x:0x%02x:0x%02x:0x%02x:0x%02x\n",
|
||||
dev->net->dev_addr[0], dev->net->dev_addr[1],
|
||||
dev->net->dev_addr[2], dev->net->dev_addr[3],
|
||||
dev->net->dev_addr[4], dev->net->dev_addr[5]);
|
||||
dev_info(&dev->udev->dev, "MAC-Address: %pM\n", dev->net->dev_addr);
|
||||
|
||||
dev->in = usb_rcvbulkpipe(dev->udev,
|
||||
ctx->in_ep->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
|
||||
|
Loading…
Reference in New Issue
Block a user