]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
staging: rtl8712: return MAC in standard form
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 10 Jul 2013 14:27:21 +0000 (17:27 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Jul 2013 21:52:19 +0000 (14:52 -0700)
MAC respresentation should follow standard form.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/rtl871x_ioctl_linux.c

index f034567122d975a911799c2d03aad6ae734afbe0..d58aa7e3b15cef799726d8bb4f4e656ddfaf7c91 100644 (file)
@@ -1000,12 +1000,8 @@ static int r871x_wx_set_priv(struct net_device *dev,
                sprintf(ext, "LINKSPEED %d", mbps);
        } else if (0 == strcasecmp(ext, "MACADDR")) {
                /*Return mac address of the station */
-               /*Macaddr = xx.xx.xx.xx.xx.xx */
-               sprintf(ext,
-                       "MACADDR = %02x.%02x.%02x.%02x.%02x.%02x",
-                       *(dev->dev_addr), *(dev->dev_addr+1),
-                       *(dev->dev_addr+2), *(dev->dev_addr+3),
-                       *(dev->dev_addr+4), *(dev->dev_addr+5));
+               /* Macaddr = xx:xx:xx:xx:xx:xx */
+               sprintf(ext, "MACADDR = %pM", dev->dev_addr);
        } else if (0 == strcasecmp(ext, "SCAN-ACTIVE")) {
                /*Set scan type to active */
                /*OK if successful */