Skip to content

Commit

Permalink
drivers/net/xilinx_emaclite.c: use %pM to shown MAC address
Browse files Browse the repository at this point in the history
Use the %pM kernel extension to display the MAC address.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
H Hartley Sweeten authored and David S. Miller committed Dec 30, 2009
1 parent aa7c68a commit 5491f3a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions drivers/net/xilinx_emaclite.c
Original file line number Diff line number Diff line change
Expand Up @@ -925,11 +925,7 @@ static int __devinit xemaclite_of_probe(struct of_device *ofdev,
/* Set the MAC address in the EmacLite device */
xemaclite_set_mac_address(lp, ndev->dev_addr);

dev_info(dev,
"MAC address is now %2x:%2x:%2x:%2x:%2x:%2x\n",
ndev->dev_addr[0], ndev->dev_addr[1],
ndev->dev_addr[2], ndev->dev_addr[3],
ndev->dev_addr[4], ndev->dev_addr[5]);
dev_info(dev, "MAC address is now %pM\n", ndev->dev_addr);

ndev->netdev_ops = &xemaclite_netdev_ops;
ndev->flags &= ~IFF_MULTICAST;
Expand Down

0 comments on commit 5491f3a

Please sign in to comment.