aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/at1700.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/at1700.c')
-rw-r--r--drivers/net/at1700.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/at1700.c b/drivers/net/at1700.c
index 309843ab8869..332f9806b78e 100644
--- a/drivers/net/at1700.c
+++ b/drivers/net/at1700.c
@@ -47,7 +47,6 @@
47#include <linux/ioport.h> 47#include <linux/ioport.h>
48#include <linux/in.h> 48#include <linux/in.h>
49#include <linux/skbuff.h> 49#include <linux/skbuff.h>
50#include <linux/slab.h>
51#include <linux/string.h> 50#include <linux/string.h>
52#include <linux/init.h> 51#include <linux/init.h>
53#include <linux/crc32.h> 52#include <linux/crc32.h>
@@ -848,12 +847,12 @@ set_rx_mode(struct net_device *dev)
848 memset(mc_filter, 0x00, sizeof(mc_filter)); 847 memset(mc_filter, 0x00, sizeof(mc_filter));
849 outb(1, ioaddr + RX_MODE); /* Ignore almost all multicasts. */ 848 outb(1, ioaddr + RX_MODE); /* Ignore almost all multicasts. */
850 } else { 849 } else {
851 struct dev_mc_list *mclist; 850 struct netdev_hw_addr *ha;
852 851
853 memset(mc_filter, 0, sizeof(mc_filter)); 852 memset(mc_filter, 0, sizeof(mc_filter));
854 netdev_for_each_mc_addr(mclist, dev) { 853 netdev_for_each_mc_addr(ha, dev) {
855 unsigned int bit = 854 unsigned int bit =
856 ether_crc_le(ETH_ALEN, mclist->dmi_addr) >> 26; 855 ether_crc_le(ETH_ALEN, ha->addr) >> 26;
857 mc_filter[bit >> 3] |= (1 << bit); 856 mc_filter[bit >> 3] |= (1 << bit);
858 } 857 }
859 outb(0x02, ioaddr + RX_MODE); /* Use normal mode. */ 858 outb(0x02, ioaddr + RX_MODE); /* Use normal mode. */