diff options
author | Peter Holik <peter@holik.at> | 2009-04-18 03:24:17 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-04-21 04:55:59 -0400 |
commit | 03ad032bb78b2732b607ed198e951240e1d21e59 (patch) | |
tree | 3bf7f5927e0545617676ad6feef07fa932db4ad4 /drivers/net/usb/usbnet.c | |
parent | bb9e63e27117b469a151c61fb0045a8ec4cced5d (diff) |
export usbnet_get_ethernet_addr from usbnet and fixed cdc_ether.c
because of using the same function get_ethernet_addr as cdc_ether.c
i export usbnet_get_ethernet_addr from usbnet and fixed cdc_ether
(suggested by Oliver Neukum).
Signed-off-by: Peter Holik <peter@holik.at>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/usb/usbnet.c')
-rw-r--r-- | drivers/net/usb/usbnet.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c index 2b8b9036aff6..c94de6243140 100644 --- a/drivers/net/usb/usbnet.c +++ b/drivers/net/usb/usbnet.c | |||
@@ -37,6 +37,7 @@ | |||
37 | #include <linux/init.h> | 37 | #include <linux/init.h> |
38 | #include <linux/netdevice.h> | 38 | #include <linux/netdevice.h> |
39 | #include <linux/etherdevice.h> | 39 | #include <linux/etherdevice.h> |
40 | #include <linux/ctype.h> | ||
40 | #include <linux/ethtool.h> | 41 | #include <linux/ethtool.h> |
41 | #include <linux/workqueue.h> | 42 | #include <linux/workqueue.h> |
42 | #include <linux/mii.h> | 43 | #include <linux/mii.h> |
@@ -156,6 +157,36 @@ int usbnet_get_endpoints(struct usbnet *dev, struct usb_interface *intf) | |||
156 | } | 157 | } |
157 | EXPORT_SYMBOL_GPL(usbnet_get_endpoints); | 158 | EXPORT_SYMBOL_GPL(usbnet_get_endpoints); |
158 | 159 | ||
160 | static u8 nibble(unsigned char c) | ||
161 | { | ||
162 | if (likely(isdigit(c))) | ||
163 | return c - '0'; | ||
164 | c = toupper(c); | ||
165 | if (likely(isxdigit(c))) | ||
166 | return 10 + c - 'A'; | ||
167 | return 0; | ||
168 | } | ||
169 | |||
170 | int usbnet_get_ethernet_addr(struct usbnet *dev, int iMACAddress) | ||
171 | { | ||
172 | int tmp, i; | ||
173 | unsigned char buf [13]; | ||
174 | |||
175 | tmp = usb_string(dev->udev, iMACAddress, buf, sizeof buf); | ||
176 | if (tmp != 12) { | ||
177 | dev_dbg(&dev->udev->dev, | ||
178 | "bad MAC string %d fetch, %d\n", iMACAddress, tmp); | ||
179 | if (tmp >= 0) | ||
180 | tmp = -EINVAL; | ||
181 | return tmp; | ||
182 | } | ||
183 | for (i = tmp = 0; i < 6; i++, tmp += 2) | ||
184 | dev->net->dev_addr [i] = | ||
185 | (nibble(buf [tmp]) << 4) + nibble(buf [tmp + 1]); | ||
186 | return 0; | ||
187 | } | ||
188 | EXPORT_SYMBOL_GPL(usbnet_get_ethernet_addr); | ||
189 | |||
159 | static void intr_complete (struct urb *urb); | 190 | static void intr_complete (struct urb *urb); |
160 | 191 | ||
161 | static int init_status (struct usbnet *dev, struct usb_interface *intf) | 192 | static int init_status (struct usbnet *dev, struct usb_interface *intf) |