diff options
| author | Patrick McHardy <kaber@trash.net> | 2010-04-20 10:02:01 -0400 |
|---|---|---|
| committer | Patrick McHardy <kaber@trash.net> | 2010-04-20 10:02:01 -0400 |
| commit | 62910554656cdcd6b6f84a5154c4155aae4ca231 (patch) | |
| tree | dcf14004f6fd2ef7154362ff948bfeba0f3ea92d /drivers/net/at1700.c | |
| parent | 22265a5c3c103cf8c50be62e6c90d045eb649e6d (diff) | |
| parent | ab9304717f7624c41927f442e6b6d418b2d8b3e4 (diff) | |
Merge branch 'master' of /repos/git/net-next-2.6
Conflicts:
Documentation/feature-removal-schedule.txt
net/ipv6/netfilter/ip6t_REJECT.c
net/netfilter/xt_limit.c
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'drivers/net/at1700.c')
| -rw-r--r-- | drivers/net/at1700.c | 7 |
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. */ |
