dm9601.c (01be83eea08d6d9f9209843e2e084505fba4053f) dm9601.c (323955a0498ccaa1263e369b91efd8f4310768b6)
1/*
2 * Davicom DM96xx USB 10/100Mbps ethernet devices
3 *
4 * Peter Korsgaard <jacmet@sunsite.dk>
5 *
6 * This file is licensed under the terms of the GNU General Public License
7 * version 2. This program is licensed "as is" without any warranty of any
8 * kind, whether express or implied.

--- 329 unchanged lines hidden (view full) ---

338}
339
340static const struct net_device_ops dm9601_netdev_ops = {
341 .ndo_open = usbnet_open,
342 .ndo_stop = usbnet_stop,
343 .ndo_start_xmit = usbnet_start_xmit,
344 .ndo_tx_timeout = usbnet_tx_timeout,
345 .ndo_change_mtu = usbnet_change_mtu,
1/*
2 * Davicom DM96xx USB 10/100Mbps ethernet devices
3 *
4 * Peter Korsgaard <jacmet@sunsite.dk>
5 *
6 * This file is licensed under the terms of the GNU General Public License
7 * version 2. This program is licensed "as is" without any warranty of any
8 * kind, whether express or implied.

--- 329 unchanged lines hidden (view full) ---

338}
339
340static const struct net_device_ops dm9601_netdev_ops = {
341 .ndo_open = usbnet_open,
342 .ndo_stop = usbnet_stop,
343 .ndo_start_xmit = usbnet_start_xmit,
344 .ndo_tx_timeout = usbnet_tx_timeout,
345 .ndo_change_mtu = usbnet_change_mtu,
346 .ndo_get_stats64 = usbnet_get_stats64,
346 .ndo_get_stats64 = dev_get_tstats64,
347 .ndo_validate_addr = eth_validate_addr,
348 .ndo_do_ioctl = dm9601_ioctl,
349 .ndo_set_rx_mode = dm9601_set_multicast,
350 .ndo_set_mac_address = dm9601_set_mac_address,
351};
352
353static int dm9601_bind(struct usbnet *dev, struct usb_interface *intf)
354{

--- 297 unchanged lines hidden ---
347 .ndo_validate_addr = eth_validate_addr,
348 .ndo_do_ioctl = dm9601_ioctl,
349 .ndo_set_rx_mode = dm9601_set_multicast,
350 .ndo_set_mac_address = dm9601_set_mac_address,
351};
352
353static int dm9601_bind(struct usbnet *dev, struct usb_interface *intf)
354{

--- 297 unchanged lines hidden ---