diff options
Diffstat (limited to 'drivers/usb/atm')
-rw-r--r-- | drivers/usb/atm/xusbatm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/atm/xusbatm.c b/drivers/usb/atm/xusbatm.c index 14ec9f0c5924..b3b1bb78b2ef 100644 --- a/drivers/usb/atm/xusbatm.c +++ b/drivers/usb/atm/xusbatm.c | |||
@@ -20,7 +20,7 @@ | |||
20 | ******************************************************************************/ | 20 | ******************************************************************************/ |
21 | 21 | ||
22 | #include <linux/module.h> | 22 | #include <linux/module.h> |
23 | #include <linux/etherdevice.h> /* for random_ether_addr() */ | 23 | #include <linux/etherdevice.h> /* for eth_random_addr() */ |
24 | 24 | ||
25 | #include "usbatm.h" | 25 | #include "usbatm.h" |
26 | 26 | ||
@@ -163,7 +163,7 @@ static int xusbatm_atm_start(struct usbatm_data *usbatm, | |||
163 | atm_dbg(usbatm, "%s entered\n", __func__); | 163 | atm_dbg(usbatm, "%s entered\n", __func__); |
164 | 164 | ||
165 | /* use random MAC as we've no way to get it from the device */ | 165 | /* use random MAC as we've no way to get it from the device */ |
166 | random_ether_addr(atm_dev->esi); | 166 | eth_random_addr(atm_dev->esi); |
167 | 167 | ||
168 | return 0; | 168 | return 0; |
169 | } | 169 | } |