compat-wireless: remove device_type in usbnet.c
authorHauke Mehrtens <hauke@hauke-m.de>
Tue, 12 Jan 2010 22:46:27 +0000 (23:46 +0100)
committerLuis R. Rodriguez <lrodriguez@atheros.com>
Tue, 12 Jan 2010 22:56:40 +0000 (14:56 -0800)
This fixes compile warning
drivers/net/usb/usbnet.c:1279: warning: ‘wlan_type’ defined but not used
drivers/net/usb/usbnet.c:1283: warning: ‘wwan_type’ defined but not used

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
patches/14-device-type.patch

index fdd7b2339a0626f42c4181e4b62b354d573b71e2..5c4f4d7c4cca00fbb185086a07d5b594d8bfec79 100644 (file)
@@ -34,3 +34,23 @@ compile warning.
  
  int bnep_add_connection(struct bnep_connadd_req *req, struct socket *sock)
  {
+--- a/drivers/net/usb/usbnet.c
++++ b/drivers/net/usb/usbnet.c
+@@ -1276,13 +1276,17 @@ static const struct net_device_ops usbne
+ // precondition: never called in_interrupt
++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32))
+ static struct device_type wlan_type = {
+       .name   = "wlan",
+ };
++#endif
++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32))
+ static struct device_type wwan_type = {
+       .name   = "wwan",
+ };
++#endif
+ int
+ usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)