diff options
author | Joe Perches <joe@perches.com> | 2012-07-12 19:33:09 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-16 22:38:28 -0700 |
commit | 344dc8ede105d4f6c3e410dd36ee5349a04e3929 (patch) | |
tree | 8848d6c7fd0303930861b049d0cfa5635321c8a8 /drivers/net/tun.c | |
parent | f4f7f4143cf7d6a31bc9797f00f765d0174603cb (diff) |
drivers/net: Use eth_random_addr
Convert the existing uses of random_ether_addr to
the new eth_random_addr.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tun.c')
-rw-r--r-- | drivers/net/tun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/tun.c b/drivers/net/tun.c index 987aeefbc774..961fad1f7053 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c @@ -22,7 +22,7 @@ * Add TUNSETLINK ioctl to set the link encapsulation * * Mark Smith <markzzzsmith@yahoo.com.au> - * Use random_ether_addr() for tap MAC address. + * Use eth_random_addr() for tap MAC address. * * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20 * Fixes in packet dropping, queue length setting and queue wakeup. |