]> Pileus Git - ~andy/linux/blobdiff - drivers/net/sunqe.c
ath5k: Use high bitrates for ACK/CTS
[~andy/linux] / drivers / net / sunqe.c
index 3bc35d86ed66aa3baa05e2309b9e43e6a4a53ae9..be637dce944c03efa7b134726a63058f97544edf 100644 (file)
@@ -627,7 +627,7 @@ static int qe_start_xmit(struct sk_buff *skb, struct net_device *dev)
 static void qe_set_multicast(struct net_device *dev)
 {
        struct sunqe *qep = netdev_priv(dev);
-       struct dev_mc_list *dmi = dev->mc_list;
+       struct dev_mc_list *dmi;
        u8 new_mconfig = qep->mconfig;
        char *addrs;
        int i;
@@ -650,12 +650,9 @@ static void qe_set_multicast(struct net_device *dev)
                u16 hash_table[4];
                u8 *hbytes = (unsigned char *) &hash_table[0];
 
-               for (i = 0; i < 4; i++)
-                       hash_table[i] = 0;
-
-               for (i = 0; i < netdev_mc_count(dev); i++) {
+               memset(hash_table, 0, sizeof(hash_table));
+               netdev_for_each_mc_addr(dmi, dev) {
                        addrs = dmi->dmi_addr;
-                       dmi = dmi->next;
 
                        if (!(*addrs & 1))
                                continue;