]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
usb: Use eth_random_addr
authorJoe Perches <joe@perches.com>
Fri, 13 Jul 2012 05:33:11 +0000 (22:33 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 17 Jul 2012 05:39:07 +0000 (22:39 -0700)
Convert the existing uses of random_ether_addr to
the new eth_random_addr.

Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/usb/atm/xusbatm.c
drivers/usb/gadget/u_ether.c

index 14ec9f0c592485c8f8d91acf919a84f52f7e9d69..b3b1bb78b2ef458bb1bd78b3825f9895e24762a8 100644 (file)
@@ -20,7 +20,7 @@
  ******************************************************************************/
 
 #include <linux/module.h>
-#include <linux/etherdevice.h>         /* for random_ether_addr() */
+#include <linux/etherdevice.h>         /* for eth_random_addr() */
 
 #include "usbatm.h"
 
@@ -163,7 +163,7 @@ static int xusbatm_atm_start(struct usbatm_data *usbatm,
        atm_dbg(usbatm, "%s entered\n", __func__);
 
        /* use random MAC as we've no way to get it from the device */
-       random_ether_addr(atm_dev->esi);
+       eth_random_addr(atm_dev->esi);
 
        return 0;
 }
index 47cf48b51c9dbdf49eb6f12f300d943fdfe9ec41..b9e1925b2df06c1f74996f4b5b0dd2638fed6a5b 100644 (file)
@@ -724,7 +724,7 @@ static int get_ether_addr(const char *str, u8 *dev_addr)
                if (is_valid_ether_addr(dev_addr))
                        return 0;
        }
-       random_ether_addr(dev_addr);
+       eth_random_addr(dev_addr);
        return 1;
 }