aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/niu.c
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2010-04-20 10:02:01 -0400
committerPatrick McHardy <kaber@trash.net>2010-04-20 10:02:01 -0400
commit62910554656cdcd6b6f84a5154c4155aae4ca231 (patch)
treedcf14004f6fd2ef7154362ff948bfeba0f3ea92d /drivers/net/niu.c
parent22265a5c3c103cf8c50be62e6c90d045eb649e6d (diff)
parentab9304717f7624c41927f442e6b6d418b2d8b3e4 (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/niu.c')
-rw-r--r--drivers/net/niu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/niu.c b/drivers/net/niu.c
index 0678f3106cbc..ef940226ee22 100644
--- a/drivers/net/niu.c
+++ b/drivers/net/niu.c
@@ -25,6 +25,7 @@
25#include <linux/jiffies.h> 25#include <linux/jiffies.h>
26#include <linux/crc32.h> 26#include <linux/crc32.h>
27#include <linux/list.h> 27#include <linux/list.h>
28#include <linux/slab.h>
28 29
29#include <linux/io.h> 30#include <linux/io.h>
30 31
@@ -6313,7 +6314,6 @@ static void niu_set_rx_mode(struct net_device *dev)
6313{ 6314{
6314 struct niu *np = netdev_priv(dev); 6315 struct niu *np = netdev_priv(dev);
6315 int i, alt_cnt, err; 6316 int i, alt_cnt, err;
6316 struct dev_addr_list *addr;
6317 struct netdev_hw_addr *ha; 6317 struct netdev_hw_addr *ha;
6318 unsigned long flags; 6318 unsigned long flags;
6319 u16 hash[16] = { 0, }; 6319 u16 hash[16] = { 0, };
@@ -6365,8 +6365,8 @@ static void niu_set_rx_mode(struct net_device *dev)
6365 for (i = 0; i < 16; i++) 6365 for (i = 0; i < 16; i++)
6366 hash[i] = 0xffff; 6366 hash[i] = 0xffff;
6367 } else if (!netdev_mc_empty(dev)) { 6367 } else if (!netdev_mc_empty(dev)) {
6368 netdev_for_each_mc_addr(addr, dev) { 6368 netdev_for_each_mc_addr(ha, dev) {
6369 u32 crc = ether_crc_le(ETH_ALEN, addr->da_addr); 6369 u32 crc = ether_crc_le(ETH_ALEN, ha->addr);
6370 6370
6371 crc >>= 24; 6371 crc >>= 24;
6372 hash[crc >> 4] |= (1 << (15 - (crc & 0xf))); 6372 hash[crc >> 4] |= (1 << (15 - (crc & 0xf)));