diff options
author | Joe Perches <joe@perches.com> | 2012-07-13 01:33:12 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-17 01:39:25 -0400 |
commit | 6e5928f6dfd92a47c489bb735c4cb8bbb62038e0 (patch) | |
tree | 95f49ca2c94bfee44f85882fe58aecf10a6b35e1 /arch/um/drivers | |
parent | 006c9139f7a90d3419381a59ac76f42612f94c14 (diff) |
arch: 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>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/um/drivers')
-rw-r--r-- | arch/um/drivers/net_kern.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/drivers/net_kern.c b/arch/um/drivers/net_kern.c index 0d60c5685c26..458d324f062d 100644 --- a/arch/um/drivers/net_kern.c +++ b/arch/um/drivers/net_kern.c | |||
@@ -339,7 +339,7 @@ static int setup_etheraddr(char *str, unsigned char *addr, char *name) | |||
339 | random: | 339 | random: |
340 | printk(KERN_INFO | 340 | printk(KERN_INFO |
341 | "Choosing a random ethernet address for device %s\n", name); | 341 | "Choosing a random ethernet address for device %s\n", name); |
342 | random_ether_addr(addr); | 342 | eth_random_addr(addr); |
343 | return 1; | 343 | return 1; |
344 | } | 344 | } |
345 | 345 | ||