aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/3com
diff options
context:
space:
mode:
authorJiri Pirko <jpirko@redhat.com>2011-08-16 02:29:01 -0400
committerDavid S. Miller <davem@davemloft.net>2011-08-17 23:22:03 -0400
commitafc4b13df143122f99a0eb10bfefb216c2806de0 (patch)
tree5a90e0a8226ce4173d8d366f5bed0322c9623cdd /drivers/net/ethernet/3com
parent01789349ee52e4a3faf376f1485303d9723c4f1f (diff)
net: remove use of ndo_set_multicast_list in drivers
replace it by ndo_set_rx_mode Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/3com')
-rw-r--r--drivers/net/ethernet/3com/3c501.c2
-rw-r--r--drivers/net/ethernet/3com/3c509.c2
-rw-r--r--drivers/net/ethernet/3com/3c515.c2
-rw-r--r--drivers/net/ethernet/3com/3c574_cs.c2
-rw-r--r--drivers/net/ethernet/3com/3c589_cs.c2
-rw-r--r--drivers/net/ethernet/3com/3c59x.c4
-rw-r--r--drivers/net/ethernet/3com/typhoon.c2
7 files changed, 8 insertions, 8 deletions
diff --git a/drivers/net/ethernet/3com/3c501.c b/drivers/net/ethernet/3com/3c501.c
index 5420f6de27df..68da81d476f3 100644
--- a/drivers/net/ethernet/3com/3c501.c
+++ b/drivers/net/ethernet/3com/3c501.c
@@ -201,7 +201,7 @@ static const struct net_device_ops el_netdev_ops = {
201 .ndo_stop = el1_close, 201 .ndo_stop = el1_close,
202 .ndo_start_xmit = el_start_xmit, 202 .ndo_start_xmit = el_start_xmit,
203 .ndo_tx_timeout = el_timeout, 203 .ndo_tx_timeout = el_timeout,
204 .ndo_set_multicast_list = set_multicast_list, 204 .ndo_set_rx_mode = set_multicast_list,
205 .ndo_change_mtu = eth_change_mtu, 205 .ndo_change_mtu = eth_change_mtu,
206 .ndo_set_mac_address = eth_mac_addr, 206 .ndo_set_mac_address = eth_mac_addr,
207 .ndo_validate_addr = eth_validate_addr, 207 .ndo_validate_addr = eth_validate_addr,
diff --git a/drivers/net/ethernet/3com/3c509.c b/drivers/net/ethernet/3com/3c509.c
index 44b28b2d7003..92053e6fc980 100644
--- a/drivers/net/ethernet/3com/3c509.c
+++ b/drivers/net/ethernet/3com/3c509.c
@@ -545,7 +545,7 @@ static const struct net_device_ops netdev_ops = {
545 .ndo_stop = el3_close, 545 .ndo_stop = el3_close,
546 .ndo_start_xmit = el3_start_xmit, 546 .ndo_start_xmit = el3_start_xmit,
547 .ndo_get_stats = el3_get_stats, 547 .ndo_get_stats = el3_get_stats,
548 .ndo_set_multicast_list = set_multicast_list, 548 .ndo_set_rx_mode = set_multicast_list,
549 .ndo_tx_timeout = el3_tx_timeout, 549 .ndo_tx_timeout = el3_tx_timeout,
550 .ndo_change_mtu = eth_change_mtu, 550 .ndo_change_mtu = eth_change_mtu,
551 .ndo_set_mac_address = eth_mac_addr, 551 .ndo_set_mac_address = eth_mac_addr,
diff --git a/drivers/net/ethernet/3com/3c515.c b/drivers/net/ethernet/3com/3c515.c
index d2bb4b254c57..f67a5d3a200c 100644
--- a/drivers/net/ethernet/3com/3c515.c
+++ b/drivers/net/ethernet/3com/3c515.c
@@ -569,7 +569,7 @@ static const struct net_device_ops netdev_ops = {
569 .ndo_start_xmit = corkscrew_start_xmit, 569 .ndo_start_xmit = corkscrew_start_xmit,
570 .ndo_tx_timeout = corkscrew_timeout, 570 .ndo_tx_timeout = corkscrew_timeout,
571 .ndo_get_stats = corkscrew_get_stats, 571 .ndo_get_stats = corkscrew_get_stats,
572 .ndo_set_multicast_list = set_rx_mode, 572 .ndo_set_rx_mode = set_rx_mode,
573 .ndo_change_mtu = eth_change_mtu, 573 .ndo_change_mtu = eth_change_mtu,
574 .ndo_set_mac_address = eth_mac_addr, 574 .ndo_set_mac_address = eth_mac_addr,
575 .ndo_validate_addr = eth_validate_addr, 575 .ndo_validate_addr = eth_validate_addr,
diff --git a/drivers/net/ethernet/3com/3c574_cs.c b/drivers/net/ethernet/3com/3c574_cs.c
index 34c5e1cbf65d..9c01bc9235b3 100644
--- a/drivers/net/ethernet/3com/3c574_cs.c
+++ b/drivers/net/ethernet/3com/3c574_cs.c
@@ -255,7 +255,7 @@ static const struct net_device_ops el3_netdev_ops = {
255 .ndo_tx_timeout = el3_tx_timeout, 255 .ndo_tx_timeout = el3_tx_timeout,
256 .ndo_get_stats = el3_get_stats, 256 .ndo_get_stats = el3_get_stats,
257 .ndo_do_ioctl = el3_ioctl, 257 .ndo_do_ioctl = el3_ioctl,
258 .ndo_set_multicast_list = set_multicast_list, 258 .ndo_set_rx_mode = set_multicast_list,
259 .ndo_change_mtu = eth_change_mtu, 259 .ndo_change_mtu = eth_change_mtu,
260 .ndo_set_mac_address = eth_mac_addr, 260 .ndo_set_mac_address = eth_mac_addr,
261 .ndo_validate_addr = eth_validate_addr, 261 .ndo_validate_addr = eth_validate_addr,
diff --git a/drivers/net/ethernet/3com/3c589_cs.c b/drivers/net/ethernet/3com/3c589_cs.c
index 4a1a35809807..972f80ecc510 100644
--- a/drivers/net/ethernet/3com/3c589_cs.c
+++ b/drivers/net/ethernet/3com/3c589_cs.c
@@ -184,7 +184,7 @@ static const struct net_device_ops el3_netdev_ops = {
184 .ndo_tx_timeout = el3_tx_timeout, 184 .ndo_tx_timeout = el3_tx_timeout,
185 .ndo_set_config = el3_config, 185 .ndo_set_config = el3_config,
186 .ndo_get_stats = el3_get_stats, 186 .ndo_get_stats = el3_get_stats,
187 .ndo_set_multicast_list = set_multicast_list, 187 .ndo_set_rx_mode = set_multicast_list,
188 .ndo_change_mtu = eth_change_mtu, 188 .ndo_change_mtu = eth_change_mtu,
189 .ndo_set_mac_address = eth_mac_addr, 189 .ndo_set_mac_address = eth_mac_addr,
190 .ndo_validate_addr = eth_validate_addr, 190 .ndo_validate_addr = eth_validate_addr,
diff --git a/drivers/net/ethernet/3com/3c59x.c b/drivers/net/ethernet/3com/3c59x.c
index 8cc22568ebd3..6e1f5959a654 100644
--- a/drivers/net/ethernet/3com/3c59x.c
+++ b/drivers/net/ethernet/3com/3c59x.c
@@ -1055,7 +1055,7 @@ static const struct net_device_ops boomrang_netdev_ops = {
1055#ifdef CONFIG_PCI 1055#ifdef CONFIG_PCI
1056 .ndo_do_ioctl = vortex_ioctl, 1056 .ndo_do_ioctl = vortex_ioctl,
1057#endif 1057#endif
1058 .ndo_set_multicast_list = set_rx_mode, 1058 .ndo_set_rx_mode = set_rx_mode,
1059 .ndo_change_mtu = eth_change_mtu, 1059 .ndo_change_mtu = eth_change_mtu,
1060 .ndo_set_mac_address = eth_mac_addr, 1060 .ndo_set_mac_address = eth_mac_addr,
1061 .ndo_validate_addr = eth_validate_addr, 1061 .ndo_validate_addr = eth_validate_addr,
@@ -1073,7 +1073,7 @@ static const struct net_device_ops vortex_netdev_ops = {
1073#ifdef CONFIG_PCI 1073#ifdef CONFIG_PCI
1074 .ndo_do_ioctl = vortex_ioctl, 1074 .ndo_do_ioctl = vortex_ioctl,
1075#endif 1075#endif
1076 .ndo_set_multicast_list = set_rx_mode, 1076 .ndo_set_rx_mode = set_rx_mode,
1077 .ndo_change_mtu = eth_change_mtu, 1077 .ndo_change_mtu = eth_change_mtu,
1078 .ndo_set_mac_address = eth_mac_addr, 1078 .ndo_set_mac_address = eth_mac_addr,
1079 .ndo_validate_addr = eth_validate_addr, 1079 .ndo_validate_addr = eth_validate_addr,
diff --git a/drivers/net/ethernet/3com/typhoon.c b/drivers/net/ethernet/3com/typhoon.c
index 1d5091a1e49a..f1dc9acf6105 100644
--- a/drivers/net/ethernet/3com/typhoon.c
+++ b/drivers/net/ethernet/3com/typhoon.c
@@ -2266,7 +2266,7 @@ static const struct net_device_ops typhoon_netdev_ops = {
2266 .ndo_open = typhoon_open, 2266 .ndo_open = typhoon_open,
2267 .ndo_stop = typhoon_close, 2267 .ndo_stop = typhoon_close,
2268 .ndo_start_xmit = typhoon_start_tx, 2268 .ndo_start_xmit = typhoon_start_tx,
2269 .ndo_set_multicast_list = typhoon_set_rx_mode, 2269 .ndo_set_rx_mode = typhoon_set_rx_mode,
2270 .ndo_tx_timeout = typhoon_tx_timeout, 2270 .ndo_tx_timeout = typhoon_tx_timeout,
2271 .ndo_get_stats = typhoon_get_stats, 2271 .ndo_get_stats = typhoon_get_stats,
2272 .ndo_validate_addr = eth_validate_addr, 2272 .ndo_validate_addr = eth_validate_addr,