kaweth.c (240c102d9c54fee7fdc87a4ef2fabc7eb539e00a) | kaweth.c (635ecaa70e862f85f652581305fe0074810893be) |
---|---|
1/**************************************************************** 2 * 3 * kaweth.c - driver for KL5KUSB101 based USB->Ethernet 4 * 5 * (c) 2000 Interlan Communications 6 * (c) 2000 Stephane Alnet 7 * (C) 2001 Brad Hards 8 * (C) 2002 Oliver Neukum --- 985 unchanged lines hidden (view full) --- 994 995static const struct net_device_ops kaweth_netdev_ops = { 996 .ndo_open = kaweth_open, 997 .ndo_stop = kaweth_close, 998 .ndo_start_xmit = kaweth_start_xmit, 999 .ndo_tx_timeout = kaweth_tx_timeout, 1000 .ndo_set_multicast_list = kaweth_set_rx_mode, 1001 .ndo_get_stats = kaweth_netdev_stats, | 1/**************************************************************** 2 * 3 * kaweth.c - driver for KL5KUSB101 based USB->Ethernet 4 * 5 * (c) 2000 Interlan Communications 6 * (c) 2000 Stephane Alnet 7 * (C) 2001 Brad Hards 8 * (C) 2002 Oliver Neukum --- 985 unchanged lines hidden (view full) --- 994 995static const struct net_device_ops kaweth_netdev_ops = { 996 .ndo_open = kaweth_open, 997 .ndo_stop = kaweth_close, 998 .ndo_start_xmit = kaweth_start_xmit, 999 .ndo_tx_timeout = kaweth_tx_timeout, 1000 .ndo_set_multicast_list = kaweth_set_rx_mode, 1001 .ndo_get_stats = kaweth_netdev_stats, |
1002 .ndo_change_mtu = eth_change_mtu, |
|
1002 .ndo_set_mac_address = eth_mac_addr, 1003 .ndo_validate_addr = eth_validate_addr, 1004}; 1005 1006static int kaweth_probe( 1007 struct usb_interface *intf, 1008 const struct usb_device_id *id /* from id_table */ 1009 ) --- 357 unchanged lines hidden --- | 1003 .ndo_set_mac_address = eth_mac_addr, 1004 .ndo_validate_addr = eth_validate_addr, 1005}; 1006 1007static int kaweth_probe( 1008 struct usb_interface *intf, 1009 const struct usb_device_id *id /* from id_table */ 1010 ) --- 357 unchanged lines hidden --- |