diff options
author | Jiri Pirko <jpirko@redhat.com> | 2010-01-25 16:36:10 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-01-25 16:36:10 -0500 |
commit | 32e7bfc41110bc8f29ec0f293c3bcee6645fef34 (patch) | |
tree | b770a040aee7a6a196514cbf5328debb33321d4d /drivers/net/ixgbe/ixgbe_main.c | |
parent | 9010bc3364db56dd88a1851e0797e597e322ce08 (diff) |
net: use helpers to access uc list V2
This patch introduces three macros to work with uc list from net drivers.
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_main.c')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c index ee41d331a35f..439645d2aeef 100644 --- a/drivers/net/ixgbe/ixgbe_main.c +++ b/drivers/net/ixgbe/ixgbe_main.c | |||
@@ -2568,7 +2568,7 @@ void ixgbe_set_rx_mode(struct net_device *netdev) | |||
2568 | IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl); | 2568 | IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl); |
2569 | 2569 | ||
2570 | /* reprogram secondary unicast list */ | 2570 | /* reprogram secondary unicast list */ |
2571 | hw->mac.ops.update_uc_addr_list(hw, &netdev->uc.list); | 2571 | hw->mac.ops.update_uc_addr_list(hw, netdev); |
2572 | 2572 | ||
2573 | /* reprogram multicast list */ | 2573 | /* reprogram multicast list */ |
2574 | addr_count = netdev->mc_count; | 2574 | addr_count = netdev->mc_count; |