aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/chelsio
diff options
context:
space:
mode:
authorJiri Pirko <jpirko@redhat.com>2010-02-07 23:30:35 -0500
committerDavid S. Miller <davem@davemloft.net>2010-02-12 14:38:58 -0500
commit4cd24eaf0c6ee7f0242e34ee77ec899f255e66b5 (patch)
tree99f57f6374a58022e1e5ed1cbc12699288c7eae1 /drivers/net/chelsio
parent8e5574211d96c0552f84c757718475fdb4021be7 (diff)
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/chelsio')
-rw-r--r--drivers/net/chelsio/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/chelsio/common.h b/drivers/net/chelsio/common.h
index f6462b54f823..bb159d9603bf 100644
--- a/drivers/net/chelsio/common.h
+++ b/drivers/net/chelsio/common.h
@@ -97,13 +97,13 @@ struct t1_rx_mode {
97 97
98#define t1_rx_mode_promisc(rm) (rm->dev->flags & IFF_PROMISC) 98#define t1_rx_mode_promisc(rm) (rm->dev->flags & IFF_PROMISC)
99#define t1_rx_mode_allmulti(rm) (rm->dev->flags & IFF_ALLMULTI) 99#define t1_rx_mode_allmulti(rm) (rm->dev->flags & IFF_ALLMULTI)
100#define t1_rx_mode_mc_cnt(rm) (rm->dev->mc_count) 100#define t1_rx_mode_mc_cnt(rm) (netdev_mc_count(rm->dev))
101 101
102static inline u8 *t1_get_next_mcaddr(struct t1_rx_mode *rm) 102static inline u8 *t1_get_next_mcaddr(struct t1_rx_mode *rm)
103{ 103{
104 u8 *addr = NULL; 104 u8 *addr = NULL;
105 105
106 if (rm->idx++ < rm->dev->mc_count) { 106 if (rm->idx++ < t1_rx_mode_mc_cnt(rm)) {
107 addr = rm->list->dmi_addr; 107 addr = rm->list->dmi_addr;
108 rm->list = rm->list->next; 108 rm->list = rm->list->next;
109 } 109 }