Commit bc54ac36 authored by Heiner Kallweit's avatar Heiner Kallweit Committed by David S. Miller

r8169: use new helper eth_hw_addr_crc

Use new helper eth_hw_addr_crc to simplify the code.
Signed-off-by: default avatarHeiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b86cd700
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
#include <linux/ethtool.h> #include <linux/ethtool.h>
#include <linux/phy.h> #include <linux/phy.h>
#include <linux/if_vlan.h> #include <linux/if_vlan.h>
#include <linux/crc32.h>
#include <linux/in.h> #include <linux/in.h>
#include <linux/io.h> #include <linux/io.h>
#include <linux/ip.h> #include <linux/ip.h>
...@@ -2610,7 +2609,7 @@ static void rtl_set_rx_mode(struct net_device *dev) ...@@ -2610,7 +2609,7 @@ static void rtl_set_rx_mode(struct net_device *dev)
mc_filter[1] = mc_filter[0] = 0; mc_filter[1] = mc_filter[0] = 0;
netdev_for_each_mc_addr(ha, dev) { netdev_for_each_mc_addr(ha, dev) {
u32 bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26; u32 bit_nr = eth_hw_addr_crc(ha) >> 26;
mc_filter[bit_nr >> 5] |= BIT(bit_nr & 31); mc_filter[bit_nr >> 5] |= BIT(bit_nr & 31);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment