smsc75xx.c (666fab4a3ea143315a9c059fad9f3a0f1365d54b) | smsc75xx.c (323955a0498ccaa1263e369b91efd8f4310768b6) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2 /*************************************************************************** 3 * 4 * Copyright (C) 2007-2010 SMSC 5 * 6 *****************************************************************************/ 7 8#include <linux/module.h> --- 1421 unchanged lines hidden (view full) --- 1430 return 0; 1431} 1432 1433static const struct net_device_ops smsc75xx_netdev_ops = { 1434 .ndo_open = usbnet_open, 1435 .ndo_stop = usbnet_stop, 1436 .ndo_start_xmit = usbnet_start_xmit, 1437 .ndo_tx_timeout = usbnet_tx_timeout, | 1// SPDX-License-Identifier: GPL-2.0-or-later 2 /*************************************************************************** 3 * 4 * Copyright (C) 2007-2010 SMSC 5 * 6 *****************************************************************************/ 7 8#include <linux/module.h> --- 1421 unchanged lines hidden (view full) --- 1430 return 0; 1431} 1432 1433static const struct net_device_ops smsc75xx_netdev_ops = { 1434 .ndo_open = usbnet_open, 1435 .ndo_stop = usbnet_stop, 1436 .ndo_start_xmit = usbnet_start_xmit, 1437 .ndo_tx_timeout = usbnet_tx_timeout, |
1438 .ndo_get_stats64 = usbnet_get_stats64, | 1438 .ndo_get_stats64 = dev_get_tstats64, |
1439 .ndo_change_mtu = smsc75xx_change_mtu, 1440 .ndo_set_mac_address = eth_mac_addr, 1441 .ndo_validate_addr = eth_validate_addr, 1442 .ndo_do_ioctl = smsc75xx_ioctl, 1443 .ndo_set_rx_mode = smsc75xx_set_multicast, 1444 .ndo_set_features = smsc75xx_set_features, 1445}; 1446 --- 892 unchanged lines hidden --- | 1439 .ndo_change_mtu = smsc75xx_change_mtu, 1440 .ndo_set_mac_address = eth_mac_addr, 1441 .ndo_validate_addr = eth_validate_addr, 1442 .ndo_do_ioctl = smsc75xx_ioctl, 1443 .ndo_set_rx_mode = smsc75xx_set_multicast, 1444 .ndo_set_features = smsc75xx_set_features, 1445}; 1446 --- 892 unchanged lines hidden --- |