David S. Miller 228da6c2e6 mac80211: Fix error introduced in netdev_mc_count() changes.
Commit 4cd24eaf0c6ee7f0242e34ee77ec899f255e66b5
("net: use netdev_mc_count and netdev_mc_empty when appropriate")
added this hunk to net/mac80211/iface.c:

 	__dev_addr_unsync(&local->mc_list, &local->mc_count,
-			  &dev->mc_list, &dev->mc_count);
+			  &dev->mc_list, dev->mc_count);

which is definitely not correct, introduced a warning (reported
by Stephen Rothwell):

net/mac80211/iface.c: In function 'ieee80211_stop':
net/mac80211/iface.c:416: warning: passing argument 4 of '__dev_addr_unsync' makes pointer from integer without a cast
include/linux/netdevice.h:1967: note: expected 'int *' but argument is of type 'int'

and is thus reverted here.

Signed-off-by: David S. Miller <davem@davemloft.net>
2010-02-14 22:49:52 -08:00
..
2009-12-16 12:16:41 -05:00
2010-02-10 12:31:10 -08:00
2010-02-04 20:28:48 -08:00
2010-02-12 16:51:10 -08:00
2009-11-25 15:14:13 -08:00
2009-12-26 20:38:23 -08:00
2010-02-12 16:51:10 -08:00
2010-02-10 12:31:10 -08:00
2009-12-15 08:53:25 -08:00
2010-01-17 19:16:02 -08:00
2009-11-25 15:14:13 -08:00
2010-01-23 01:21:27 -08:00
2010-01-19 14:23:57 -08:00
2010-01-17 19:16:02 -08:00
2010-02-10 11:12:10 -08:00
2010-02-12 13:27:47 -08:00
2009-12-17 10:51:40 -05:00