diff options
author | Jiri Pirko <jpirko@redhat.com> | 2010-02-17 06:09:31 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-02-17 16:27:12 -0500 |
commit | e1d444771e0895c7706bc99857d69e4f2a58a531 (patch) | |
tree | b17410e94c6c78416b6e125fad0c4ed208edc39f /drivers/net/dl2k.c | |
parent | d7b855c2dcc89587f36338bd383203322efb9903 (diff) |
net: convert multiple drivers to use netdev_for_each_mc_addr
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dl2k.c')
-rw-r--r-- | drivers/net/dl2k.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/dl2k.c b/drivers/net/dl2k.c index dea40953ed1b..b05bad829827 100644 --- a/drivers/net/dl2k.c +++ b/drivers/net/dl2k.c | |||
@@ -1132,15 +1132,12 @@ set_multicast (struct net_device *dev) | |||
1132 | /* Receive broadcast and multicast frames */ | 1132 | /* Receive broadcast and multicast frames */ |
1133 | rx_mode = ReceiveBroadcast | ReceiveMulticast | ReceiveUnicast; | 1133 | rx_mode = ReceiveBroadcast | ReceiveMulticast | ReceiveUnicast; |
1134 | } else if (!netdev_mc_empty(dev)) { | 1134 | } else if (!netdev_mc_empty(dev)) { |
1135 | int i; | ||
1136 | struct dev_mc_list *mclist; | 1135 | struct dev_mc_list *mclist; |
1137 | /* Receive broadcast frames and multicast frames filtering | 1136 | /* Receive broadcast frames and multicast frames filtering |
1138 | by Hashtable */ | 1137 | by Hashtable */ |
1139 | rx_mode = | 1138 | rx_mode = |
1140 | ReceiveBroadcast | ReceiveMulticastHash | ReceiveUnicast; | 1139 | ReceiveBroadcast | ReceiveMulticastHash | ReceiveUnicast; |
1141 | for (i=0, mclist = dev->mc_list; mclist && i < netdev_mc_count(dev); | 1140 | netdev_for_each_mc_addr(mclist, dev) { |
1142 | i++, mclist=mclist->next) | ||
1143 | { | ||
1144 | int bit, index = 0; | 1141 | int bit, index = 0; |
1145 | int crc = ether_crc_le (ETH_ALEN, mclist->dmi_addr); | 1142 | int crc = ether_crc_le (ETH_ALEN, mclist->dmi_addr); |
1146 | /* The inverted high significant 6 bits of CRC are | 1143 | /* The inverted high significant 6 bits of CRC are |