Skip to content

Commit

Permalink
lasi82596: fix netdev_mc_count conversion
Browse files Browse the repository at this point in the history
Fix commit 4cd24ea (net: use netdev_mc_count and netdev_mc_empty when
appropriate)

Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Helge Deller authored and David S. Miller committed Jun 21, 2010
1 parent ade2d3d commit 13fea6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/lib82596.c
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,7 @@ static void set_multicast_list(struct net_device *dev)
DEB(DEB_MULTI,
printk(KERN_DEBUG
"%s: set multicast list, %d entries, promisc %s, allmulti %s\n",
dev->name, dev->mc_count,
dev->name, netdev_mc_count(dev),
dev->flags & IFF_PROMISC ? "ON" : "OFF",
dev->flags & IFF_ALLMULTI ? "ON" : "OFF"));

Expand Down

0 comments on commit 13fea6d

Please sign in to comment.