tokenring: convert to use netdev_for_each_mc_addr
Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
d59079425f
commit
16cad98186
@ -1390,10 +1390,9 @@ static int xl_close(struct net_device *dev)
|
||||
static void xl_set_rx_mode(struct net_device *dev)
|
||||
{
|
||||
struct xl_private *xl_priv = netdev_priv(dev);
|
||||
struct dev_mc_list *dmi ;
|
||||
struct dev_mc_list *dmi;
|
||||
unsigned char dev_mc_address[4] ;
|
||||
u16 options ;
|
||||
int i ;
|
||||
|
||||
if (dev->flags & IFF_PROMISC)
|
||||
options = 0x0004 ;
|
||||
@ -1408,7 +1407,7 @@ static void xl_set_rx_mode(struct net_device *dev)
|
||||
|
||||
dev_mc_address[0] = dev_mc_address[1] = dev_mc_address[2] = dev_mc_address[3] = 0 ;
|
||||
|
||||
for (i=0,dmi=dev->mc_list;i < netdev_mc_count(dev); i++,dmi = dmi->next) {
|
||||
netdev_for_each_mc_addr(dmi, dev) {
|
||||
dev_mc_address[0] |= dmi->dmi_addr[2] ;
|
||||
dev_mc_address[1] |= dmi->dmi_addr[3] ;
|
||||
dev_mc_address[2] |= dmi->dmi_addr[4] ;
|
||||
|
Reference in New Issue
Block a user