diff options
author | Jiri Pirko <jpirko@redhat.com> | 2011-08-16 10:29:02 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-08-18 07:22:03 +0400 |
commit | b81693d9149c598302e8eb9c20cb20330d922c8e (patch) | |
tree | 450ac7ce3252d90d55c46c5a3c28dec8e2f2308c /include/linux/netdevice.h | |
parent | afc4b13df143122f99a0eb10bfefb216c2806de0 (diff) | |
download | linux-b81693d9149c598302e8eb9c20cb20330d922c8e.tar.xz |
net: remove ndo_set_multicast_list callback
Remove no longer used operation.
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 96e4f7e0ad68..125f9fb8ece4 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -726,9 +726,6 @@ struct netdev_tc_txq { * If driver handles unicast address filtering, it should set * IFF_UNICAST_FLT to its priv_flags. * - * void (*ndo_set_multicast_list)(struct net_device *dev); - * This function is called when the multicast address list changes. - * * int (*ndo_set_mac_address)(struct net_device *dev, void *addr); * This function is called when the Media Access Control address * needs to be changed. If this interface is not defined, the @@ -870,7 +867,6 @@ struct net_device_ops { void (*ndo_change_rx_flags)(struct net_device *dev, int flags); void (*ndo_set_rx_mode)(struct net_device *dev); - void (*ndo_set_multicast_list)(struct net_device *dev); int (*ndo_set_mac_address)(struct net_device *dev, void *addr); int (*ndo_validate_addr)(struct net_device *dev); |