diff options
author | Alexander Beregalov <a.beregalov@gmail.com> | 2009-04-15 03:58:28 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-04-16 05:20:05 -0400 |
commit | 84381eed93c974024402eda250c9e7890b72ca4a (patch) | |
tree | 2451e538db5f290605d240c7c65d855e08495923 /drivers | |
parent | d130fe5c95739472b61b30f3f2b401ee43d5e3ea (diff) |
usbnet: remove old compat_net_dev_ops code
Since all usb network drivers are already converted to net_device_ops
this code is useless.
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/usb/usbnet.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c index f3a2fce6166c..2b8b9036aff6 100644 --- a/drivers/net/usb/usbnet.c +++ b/drivers/net/usb/usbnet.c | |||
@@ -1185,12 +1185,6 @@ usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod) | |||
1185 | #endif | 1185 | #endif |
1186 | 1186 | ||
1187 | net->netdev_ops = &usbnet_netdev_ops; | 1187 | net->netdev_ops = &usbnet_netdev_ops; |
1188 | #ifdef CONFIG_COMPAT_NET_DEV_OPS | ||
1189 | net->hard_start_xmit = usbnet_start_xmit; | ||
1190 | net->open = usbnet_open; | ||
1191 | net->stop = usbnet_stop; | ||
1192 | net->tx_timeout = usbnet_tx_timeout; | ||
1193 | #endif | ||
1194 | net->watchdog_timeo = TX_TIMEOUT_JIFFIES; | 1188 | net->watchdog_timeo = TX_TIMEOUT_JIFFIES; |
1195 | net->ethtool_ops = &usbnet_ethtool_ops; | 1189 | net->ethtool_ops = &usbnet_ethtool_ops; |
1196 | 1190 | ||