diff options
| author | Jiri Pirko <jpirko@redhat.com> | 2010-02-08 04:30:35 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-02-12 11:38:58 -0800 | 
| commit | 4cd24eaf0c6ee7f0242e34ee77ec899f255e66b5 (patch) | |
| tree | 99f57f6374a58022e1e5ed1cbc12699288c7eae1 /drivers/net/arm/at91_ether.c | |
| parent | 8e5574211d96c0552f84c757718475fdb4021be7 (diff) | |
| download | olio-linux-3.10-4cd24eaf0c6ee7f0242e34ee77ec899f255e66b5.tar.xz olio-linux-3.10-4cd24eaf0c6ee7f0242e34ee77ec899f255e66b5.zip  | |
net: use netdev_mc_count and netdev_mc_empty when appropriate
This patch replaces dev->mc_count in all drivers (hopefully I didn't miss
anything). Used spatch and did small tweaks and conding style changes when
it was suitable.
Jirka
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/arm/at91_ether.c')
| -rw-r--r-- | drivers/net/arm/at91_ether.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/arm/at91_ether.c b/drivers/net/arm/at91_ether.c index c8bc60a7040..17d85d98987 100644 --- a/drivers/net/arm/at91_ether.c +++ b/drivers/net/arm/at91_ether.c @@ -563,7 +563,7 @@ static void at91ether_sethashtable(struct net_device *dev)  	mc_filter[0] = mc_filter[1] = 0;  	curr = dev->mc_list; -	for (i = 0; i < dev->mc_count; i++, curr = curr->next) { +	for (i = 0; i < netdev_mc_count(dev); i++, curr = curr->next) {  		if (!curr) break;	/* unexpected end of list */  		bitnr = hash_get_index(curr->dmi_addr); @@ -592,7 +592,7 @@ static void at91ether_set_multicast_list(struct net_device *dev)  		at91_emac_write(AT91_EMAC_HSH, -1);  		at91_emac_write(AT91_EMAC_HSL, -1);  		cfg |= AT91_EMAC_MTI; -	} else if (dev->mc_count > 0) {			/* Enable specific multicasts */ +	} else if (!netdev_mc_empty(dev)) { /* Enable specific multicasts */  		at91ether_sethashtable(dev);  		cfg |= AT91_EMAC_MTI;  	} else if (dev->flags & (~IFF_ALLMULTI)) {	/* Disable all multicast mode */  |