Fixed 8139too driver for 2.6.36.
authorFlorian Pose <fp@igh-essen.com>
Mon, 23 Jul 2012 15:32:42 +0200
changeset 2398 a6e2874fb0bd
parent 2396 d46f2668a409
child 2400 7c9c12c61104
Fixed 8139too driver for 2.6.36.
devices/8139too-2.6.36-ethercat.c
--- a/devices/8139too-2.6.36-ethercat.c	Mon Jul 23 12:23:42 2012 +0200
+++ b/devices/8139too-2.6.36-ethercat.c	Mon Jul 23 15:32:42 2012 +0200
@@ -1784,7 +1784,7 @@
 	void __iomem *ioaddr = tp->mmio_addr;
 	unsigned int entry;
 	unsigned int len = skb->len;
-	unsigned long flags;
+	unsigned long flags = 0;
 
 	/* Calculate the next Tx descriptor entry. */
 	entry = tp->cur_tx % NUM_TX_DESC;
@@ -2661,8 +2661,8 @@
 		    AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
 		    AcceptAllPhys;
 		mc_filter[1] = mc_filter[0] = 0xffffffff;
-	} else if ((dev->mc_count > multicast_filter_limit)
-		   || (dev->flags & IFF_ALLMULTI)) {
+	} else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
+		   (dev->flags & IFF_ALLMULTI)) {
 		/* Too many to filter perfectly -- accept all multicasts. */
 		rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
 		mc_filter[1] = mc_filter[0] = 0xffffffff;