From: Scott Feldman Date: Thu, 13 Aug 2015 01:44:13 +0000 (-0700) Subject: rocker: print switch ID consistent with phys_switch_id sysfs node X-Git-Tag: v4.3-rc1~96^2~174 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c8beb5b2613418e7ac1ffaee1f0796e77a4000be;p=karo-tx-linux.git rocker: print switch ID consistent with phys_switch_id sysfs node On sucessful probe, driver prints the switch ID. This patch changes the format of the printed ID to match what's used in sysfs phys_switch_id node. Signed-off-by: Scott Feldman Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/rocker/rocker.c b/drivers/net/ethernet/rocker/rocker.c index cf9c0b241d07..27f3e2b2ae00 100644 --- a/drivers/net/ethernet/rocker/rocker.c +++ b/drivers/net/ethernet/rocker/rocker.c @@ -5183,7 +5183,8 @@ static int rocker_probe(struct pci_dev *pdev, const struct pci_device_id *id) goto err_probe_ports; } - dev_info(&pdev->dev, "Rocker switch with id %016llx\n", rocker->hw.id); + dev_info(&pdev->dev, "Rocker switch with id %*phN\n", + (int)sizeof(rocker->hw.id), &rocker->hw.id); return 0;