Commit 13fea6d4f73942e6961aec97ba4c593619d18f6f

Authored by Helge Deller
Committed by David S. Miller
1 parent ade2d3db21

lasi82596: fix netdev_mc_count conversion

Fix commit 4cd24eaf0 (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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/net/lib82596.c
... ... @@ -1343,7 +1343,7 @@
1343 1343 DEB(DEB_MULTI,
1344 1344 printk(KERN_DEBUG
1345 1345 "%s: set multicast list, %d entries, promisc %s, allmulti %s\n",
1346   - dev->name, dev->mc_count,
  1346 + dev->name, netdev_mc_count(dev),
1347 1347 dev->flags & IFF_PROMISC ? "ON" : "OFF",
1348 1348 dev->flags & IFF_ALLMULTI ? "ON" : "OFF"));
1349 1349