diff options
author | H Hartley Sweeten <hsweeten@visionengravers.com> | 2009-12-29 23:04:53 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-12-29 23:04:53 -0500 |
commit | 5491f3a5623129f3d4e0c62e691c2a5e56c75d41 (patch) | |
tree | 8eea0dd0a1a2ff77664338051c09efe14ffa3372 /drivers/net/xilinx_emaclite.c | |
parent | aa7c68a5f75cf04e79348e8baca67c7393d8f7e4 (diff) |
drivers/net/xilinx_emaclite.c: use %pM to shown MAC address
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>
Diffstat (limited to 'drivers/net/xilinx_emaclite.c')
-rw-r--r-- | drivers/net/xilinx_emaclite.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/net/xilinx_emaclite.c b/drivers/net/xilinx_emaclite.c index 8c777ba4e2b3..f7fe1aa03b42 100644 --- a/drivers/net/xilinx_emaclite.c +++ b/drivers/net/xilinx_emaclite.c | |||
@@ -925,11 +925,7 @@ static int __devinit xemaclite_of_probe(struct of_device *ofdev, | |||
925 | /* Set the MAC address in the EmacLite device */ | 925 | /* Set the MAC address in the EmacLite device */ |
926 | xemaclite_set_mac_address(lp, ndev->dev_addr); | 926 | xemaclite_set_mac_address(lp, ndev->dev_addr); |
927 | 927 | ||
928 | dev_info(dev, | 928 | dev_info(dev, "MAC address is now %pM\n", ndev->dev_addr); |
929 | "MAC address is now %2x:%2x:%2x:%2x:%2x:%2x\n", | ||
930 | ndev->dev_addr[0], ndev->dev_addr[1], | ||
931 | ndev->dev_addr[2], ndev->dev_addr[3], | ||
932 | ndev->dev_addr[4], ndev->dev_addr[5]); | ||
933 | 929 | ||
934 | ndev->netdev_ops = &xemaclite_netdev_ops; | 930 | ndev->netdev_ops = &xemaclite_netdev_ops; |
935 | ndev->flags &= ~IFF_MULTICAST; | 931 | ndev->flags &= ~IFF_MULTICAST; |