summaryrefslogtreecommitdiffstats
path: root/package/libertas/patches/100-compile_fix.patch
blob: 9834414f78bcee81e491b261118eb8b522714b8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Index: kmod-libertas/ethtool.c
===================================================================
--- kmod-libertas.orig/ethtool.c	2008-01-14 22:14:06.000000000 +0000
+++ kmod-libertas/ethtool.c	2008-01-14 22:14:14.000000000 +0000
@@ -144,16 +144,6 @@
 	lbs_deb_enter(LBS_DEB_ETHTOOL);
 }
 
-static int lbs_ethtool_get_sset_count(struct net_device * dev, int sset)
-{
-	switch (sset) {
-	case ETH_SS_STATS:
-		return MESH_STATS_NUM;
-	default:
-		return -EOPNOTSUPP;
-	}
-}
-
 static void lbs_ethtool_get_strings(struct net_device *dev,
 					  u32 stringset,
 					  u8 * s)
@@ -221,7 +211,6 @@
 	.get_drvinfo = lbs_ethtool_get_drvinfo,
 	.get_eeprom =  lbs_ethtool_get_eeprom,
 	.get_eeprom_len = lbs_ethtool_get_eeprom_len,
-	.get_sset_count = lbs_ethtool_get_sset_count,
 	.get_ethtool_stats = lbs_ethtool_get_stats,
 	.get_strings = lbs_ethtool_get_strings,
 	.get_wol = lbs_ethtool_get_wol,
Index: kmod-libertas/if_usb.c
===================================================================
--- kmod-libertas.orig/if_usb.c	2008-01-14 22:14:57.000000000 +0000
+++ kmod-libertas/if_usb.c	2008-01-14 22:17:09.000000000 +0000
@@ -188,14 +188,14 @@
 		endpoint = &iface_desc->endpoint[i].desc;
 		if (usb_endpoint_is_bulk_in(endpoint)) {
 			cardp->ep_in_size = le16_to_cpu(endpoint->wMaxPacketSize);
-			cardp->ep_in = usb_endpoint_num(endpoint);
+			cardp->ep_in = endpoint->bEndpointAddress;
 
 			lbs_deb_usbd(&udev->dev, "in_endpoint = %d\n", cardp->ep_in);
 			lbs_deb_usbd(&udev->dev, "Bulk in size is %d\n", cardp->ep_in_size);
 
 		} else if (usb_endpoint_is_bulk_out(endpoint)) {
 			cardp->ep_out_size = le16_to_cpu(endpoint->wMaxPacketSize);
-			cardp->ep_out = usb_endpoint_num(endpoint);
+			cardp->ep_out = endpoint->bEndpointAddress;
 
 			lbs_deb_usbd(&udev->dev, "out_endpoint = %d\n", cardp->ep_out);
 			lbs_deb_usbd(&udev->dev, "Bulk out size is %d\n", cardp->ep_out_size);