pegasus.c (240c102d9c54fee7fdc87a4ef2fabc7eb539e00a) | pegasus.c (635ecaa70e862f85f652581305fe0074810893be) |
---|---|
1/* 2 * Copyright (c) 1999-2005 Petko Manolov (petkan@users.sourceforge.net) 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License version 2 as 6 * published by the Free Software Foundation. 7 * 8 * ChangeLog: --- 1479 unchanged lines hidden (view full) --- 1488static const struct net_device_ops pegasus_netdev_ops = { 1489 .ndo_open = pegasus_open, 1490 .ndo_stop = pegasus_close, 1491 .ndo_do_ioctl = pegasus_ioctl, 1492 .ndo_start_xmit = pegasus_start_xmit, 1493 .ndo_set_multicast_list = pegasus_set_multicast, 1494 .ndo_get_stats = pegasus_netdev_stats, 1495 .ndo_tx_timeout = pegasus_tx_timeout, | 1/* 2 * Copyright (c) 1999-2005 Petko Manolov (petkan@users.sourceforge.net) 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License version 2 as 6 * published by the Free Software Foundation. 7 * 8 * ChangeLog: --- 1479 unchanged lines hidden (view full) --- 1488static const struct net_device_ops pegasus_netdev_ops = { 1489 .ndo_open = pegasus_open, 1490 .ndo_stop = pegasus_close, 1491 .ndo_do_ioctl = pegasus_ioctl, 1492 .ndo_start_xmit = pegasus_start_xmit, 1493 .ndo_set_multicast_list = pegasus_set_multicast, 1494 .ndo_get_stats = pegasus_netdev_stats, 1495 .ndo_tx_timeout = pegasus_tx_timeout, |
1496 .ndo_change_mtu = eth_change_mtu, |
|
1496 .ndo_set_mac_address = eth_mac_addr, 1497 .ndo_validate_addr = eth_validate_addr, 1498}; 1499 1500static struct usb_driver pegasus_driver = { 1501 .name = driver_name, 1502 .probe = pegasus_probe, 1503 .disconnect = pegasus_disconnect, --- 51 unchanged lines hidden --- | 1497 .ndo_set_mac_address = eth_mac_addr, 1498 .ndo_validate_addr = eth_validate_addr, 1499}; 1500 1501static struct usb_driver pegasus_driver = { 1502 .name = driver_name, 1503 .probe = pegasus_probe, 1504 .disconnect = pegasus_disconnect, --- 51 unchanged lines hidden --- |