diff options
Diffstat (limited to 'net')
| -rw-r--r-- | net/8021q/vlan_dev.c | 1 | ||||
| -rw-r--r-- | net/atm/lec.c | 2 | ||||
| -rw-r--r-- | net/bluetooth/bnep/netdev.c | 2 | ||||
| -rw-r--r-- | net/bridge/br_device.c | 2 | ||||
| -rw-r--r-- | net/dsa/slave.c | 3 | ||||
| -rw-r--r-- | net/irda/irlan/irlan_eth.c | 2 | ||||
| -rw-r--r-- | net/mac80211/iface.c | 4 | 
7 files changed, 6 insertions, 10 deletions
diff --git a/net/8021q/vlan_dev.c b/net/8021q/vlan_dev.c index 9d40a071d03..eba705b92d6 100644 --- a/net/8021q/vlan_dev.c +++ b/net/8021q/vlan_dev.c @@ -674,7 +674,6 @@ static const struct net_device_ops vlan_netdev_ops = {  	.ndo_validate_addr	= eth_validate_addr,  	.ndo_set_mac_address	= vlan_dev_set_mac_address,  	.ndo_set_rx_mode	= vlan_dev_set_rx_mode, -	.ndo_set_multicast_list	= vlan_dev_set_rx_mode,  	.ndo_change_rx_flags	= vlan_dev_change_rx_flags,  	.ndo_do_ioctl		= vlan_dev_ioctl,  	.ndo_neigh_setup	= vlan_dev_neigh_setup, diff --git a/net/atm/lec.c b/net/atm/lec.c index 215c9fad7cd..f1964caa0f8 100644 --- a/net/atm/lec.c +++ b/net/atm/lec.c @@ -643,7 +643,7 @@ static const struct net_device_ops lec_netdev_ops = {  	.ndo_start_xmit		= lec_start_xmit,  	.ndo_change_mtu		= lec_change_mtu,  	.ndo_tx_timeout		= lec_tx_timeout, -	.ndo_set_multicast_list	= lec_set_multicast_list, +	.ndo_set_rx_mode	= lec_set_multicast_list,  };  static const unsigned char lec_ctrl_magic[] = { diff --git a/net/bluetooth/bnep/netdev.c b/net/bluetooth/bnep/netdev.c index d4f5dff7c95..bc4086480d9 100644 --- a/net/bluetooth/bnep/netdev.c +++ b/net/bluetooth/bnep/netdev.c @@ -217,7 +217,7 @@ static const struct net_device_ops bnep_netdev_ops = {  	.ndo_stop            = bnep_net_close,  	.ndo_start_xmit	     = bnep_net_xmit,  	.ndo_validate_addr   = eth_validate_addr, -	.ndo_set_multicast_list = bnep_net_set_mc_list, +	.ndo_set_rx_mode     = bnep_net_set_mc_list,  	.ndo_set_mac_address = bnep_net_set_mac_addr,  	.ndo_tx_timeout      = bnep_net_timeout,  	.ndo_change_mtu	     = eth_change_mtu, diff --git a/net/bridge/br_device.c b/net/bridge/br_device.c index 32b8f9f7f79..ee68eee79e5 100644 --- a/net/bridge/br_device.c +++ b/net/bridge/br_device.c @@ -304,7 +304,7 @@ static const struct net_device_ops br_netdev_ops = {  	.ndo_start_xmit		 = br_dev_xmit,  	.ndo_get_stats64	 = br_get_stats64,  	.ndo_set_mac_address	 = br_set_mac_address, -	.ndo_set_multicast_list	 = br_dev_set_multicast_list, +	.ndo_set_rx_mode	 = br_dev_set_multicast_list,  	.ndo_change_mtu		 = br_change_mtu,  	.ndo_do_ioctl		 = br_dev_ioctl,  #ifdef CONFIG_NET_POLL_CONTROLLER diff --git a/net/dsa/slave.c b/net/dsa/slave.c index 0a47b6c3703..56cf9b8e1c7 100644 --- a/net/dsa/slave.c +++ b/net/dsa/slave.c @@ -301,7 +301,6 @@ static const struct net_device_ops dsa_netdev_ops = {  	.ndo_start_xmit		= dsa_xmit,  	.ndo_change_rx_flags	= dsa_slave_change_rx_flags,  	.ndo_set_rx_mode	= dsa_slave_set_rx_mode, -	.ndo_set_multicast_list = dsa_slave_set_rx_mode,  	.ndo_set_mac_address	= dsa_slave_set_mac_address,  	.ndo_do_ioctl		= dsa_slave_ioctl,  }; @@ -314,7 +313,6 @@ static const struct net_device_ops edsa_netdev_ops = {  	.ndo_start_xmit		= edsa_xmit,  	.ndo_change_rx_flags	= dsa_slave_change_rx_flags,  	.ndo_set_rx_mode	= dsa_slave_set_rx_mode, -	.ndo_set_multicast_list = dsa_slave_set_rx_mode,  	.ndo_set_mac_address	= dsa_slave_set_mac_address,  	.ndo_do_ioctl		= dsa_slave_ioctl,  }; @@ -327,7 +325,6 @@ static const struct net_device_ops trailer_netdev_ops = {  	.ndo_start_xmit		= trailer_xmit,  	.ndo_change_rx_flags	= dsa_slave_change_rx_flags,  	.ndo_set_rx_mode	= dsa_slave_set_rx_mode, -	.ndo_set_multicast_list = dsa_slave_set_rx_mode,  	.ndo_set_mac_address	= dsa_slave_set_mac_address,  	.ndo_do_ioctl		= dsa_slave_ioctl,  }; diff --git a/net/irda/irlan/irlan_eth.c b/net/irda/irlan/irlan_eth.c index e8d5f4405d6..d14152e866d 100644 --- a/net/irda/irlan/irlan_eth.c +++ b/net/irda/irlan/irlan_eth.c @@ -50,7 +50,7 @@ static const struct net_device_ops irlan_eth_netdev_ops = {  	.ndo_open               = irlan_eth_open,  	.ndo_stop               = irlan_eth_close,  	.ndo_start_xmit    	= irlan_eth_xmit, -	.ndo_set_multicast_list = irlan_eth_set_multicast_list, +	.ndo_set_rx_mode	= irlan_eth_set_multicast_list,  	.ndo_change_mtu		= eth_change_mtu,  	.ndo_validate_addr	= eth_validate_addr,  }; diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c index c798b434eb6..d10dc4df60b 100644 --- a/net/mac80211/iface.c +++ b/net/mac80211/iface.c @@ -645,7 +645,7 @@ static const struct net_device_ops ieee80211_dataif_ops = {  	.ndo_stop		= ieee80211_stop,  	.ndo_uninit		= ieee80211_teardown_sdata,  	.ndo_start_xmit		= ieee80211_subif_start_xmit, -	.ndo_set_multicast_list = ieee80211_set_multicast_list, +	.ndo_set_rx_mode	= ieee80211_set_multicast_list,  	.ndo_change_mtu 	= ieee80211_change_mtu,  	.ndo_set_mac_address 	= ieee80211_change_mac,  	.ndo_select_queue	= ieee80211_netdev_select_queue, @@ -689,7 +689,7 @@ static const struct net_device_ops ieee80211_monitorif_ops = {  	.ndo_stop		= ieee80211_stop,  	.ndo_uninit		= ieee80211_teardown_sdata,  	.ndo_start_xmit		= ieee80211_monitor_start_xmit, -	.ndo_set_multicast_list = ieee80211_set_multicast_list, +	.ndo_set_rx_mode	= ieee80211_set_multicast_list,  	.ndo_change_mtu 	= ieee80211_change_mtu,  	.ndo_set_mac_address 	= eth_mac_addr,  	.ndo_select_queue	= ieee80211_monitor_select_queue,  |