diff options
author | Jiri Pirko <jpirko@redhat.com> | 2010-02-17 19:42:54 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-02-18 17:47:49 -0500 |
commit | 5508590c193661bc1484ad7b952af5fceacea40d (patch) | |
tree | 8b7d1655f63034725127b9456afa5bad4bb6e83a /drivers/net/s2io.c | |
parent | 2a0d18f97cc15d57ad0c93259a3df4cb72c5a28b (diff) |
net: convert multiple drivers to use netdev_for_each_mc_addr, part2
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/s2io.c')
-rw-r--r-- | drivers/net/s2io.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/s2io.c b/drivers/net/s2io.c index 102be16e9b52..43bc66aa8405 100644 --- a/drivers/net/s2io.c +++ b/drivers/net/s2io.c | |||
@@ -5092,8 +5092,8 @@ static void s2io_set_multicast(struct net_device *dev) | |||
5092 | } | 5092 | } |
5093 | 5093 | ||
5094 | /* Create the new Rx filter list and update the same in H/W. */ | 5094 | /* Create the new Rx filter list and update the same in H/W. */ |
5095 | for (i = 0, mclist = dev->mc_list; i < netdev_mc_count(dev); | 5095 | i = 0; |
5096 | i++, mclist = mclist->next) { | 5096 | netdev_for_each_mc_addr(mclist, dev) { |
5097 | memcpy(sp->usr_addrs[i].addr, mclist->dmi_addr, | 5097 | memcpy(sp->usr_addrs[i].addr, mclist->dmi_addr, |
5098 | ETH_ALEN); | 5098 | ETH_ALEN); |
5099 | mac_addr = 0; | 5099 | mac_addr = 0; |
@@ -5121,6 +5121,7 @@ static void s2io_set_multicast(struct net_device *dev) | |||
5121 | dev->name); | 5121 | dev->name); |
5122 | return; | 5122 | return; |
5123 | } | 5123 | } |
5124 | i++; | ||
5124 | } | 5125 | } |
5125 | } | 5126 | } |
5126 | } | 5127 | } |