aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/niu.c
diff options
context:
space:
mode:
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)));