diff options
Diffstat (limited to 'drivers/net/hp-plus.c')
-rw-r--r-- | drivers/net/hp-plus.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/hp-plus.c b/drivers/net/hp-plus.c index c34411cba6b4..b507dbc16e62 100644 --- a/drivers/net/hp-plus.c +++ b/drivers/net/hp-plus.c | |||
@@ -161,14 +161,14 @@ out: | |||
161 | static const struct net_device_ops hpp_netdev_ops = { | 161 | static const struct net_device_ops hpp_netdev_ops = { |
162 | .ndo_open = hpp_open, | 162 | .ndo_open = hpp_open, |
163 | .ndo_stop = hpp_close, | 163 | .ndo_stop = hpp_close, |
164 | .ndo_start_xmit = ei_start_xmit, | 164 | .ndo_start_xmit = eip_start_xmit, |
165 | .ndo_tx_timeout = ei_tx_timeout, | 165 | .ndo_tx_timeout = eip_tx_timeout, |
166 | .ndo_get_stats = ei_get_stats, | 166 | .ndo_get_stats = eip_get_stats, |
167 | .ndo_set_multicast_list = ei_set_multicast_list, | 167 | .ndo_set_multicast_list = eip_set_multicast_list, |
168 | .ndo_validate_addr = eth_validate_addr, | 168 | .ndo_validate_addr = eth_validate_addr, |
169 | .ndo_change_mtu = eth_change_mtu, | 169 | .ndo_change_mtu = eth_change_mtu, |
170 | #ifdef CONFIG_NET_POLL_CONTROLLER | 170 | #ifdef CONFIG_NET_POLL_CONTROLLER |
171 | .ndo_poll_controller = ei_poll, | 171 | .ndo_poll_controller = eip_poll, |
172 | #endif | 172 | #endif |
173 | }; | 173 | }; |
174 | 174 | ||