mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
8390(p): remove old compat_net_dev_ops code
Remove compat_net_dev_ops code and use struct net_device_ops instead of it. Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
84381eed93
commit
eb9bdaee55
@ -74,14 +74,8 @@ EXPORT_SYMBOL(ei_netdev_ops);
|
||||
struct net_device *__alloc_ei_netdev(int size)
|
||||
{
|
||||
struct net_device *dev = ____alloc_ei_netdev(size);
|
||||
#ifdef CONFIG_COMPAT_NET_DEV_OPS
|
||||
if (dev) {
|
||||
dev->hard_start_xmit = ei_start_xmit;
|
||||
dev->get_stats = ei_get_stats;
|
||||
dev->set_multicast_list = ei_set_multicast_list;
|
||||
dev->tx_timeout = ei_tx_timeout;
|
||||
}
|
||||
#endif
|
||||
if (dev)
|
||||
dev->netdev_ops = &ei_netdev_ops;
|
||||
return dev;
|
||||
}
|
||||
EXPORT_SYMBOL(__alloc_ei_netdev);
|
||||
|
@ -79,14 +79,8 @@ EXPORT_SYMBOL(eip_netdev_ops);
|
||||
struct net_device *__alloc_eip_netdev(int size)
|
||||
{
|
||||
struct net_device *dev = ____alloc_ei_netdev(size);
|
||||
#ifdef CONFIG_COMPAT_NET_DEV_OPS
|
||||
if (dev) {
|
||||
dev->hard_start_xmit = eip_start_xmit;
|
||||
dev->get_stats = eip_get_stats;
|
||||
dev->set_multicast_list = eip_set_multicast_list;
|
||||
dev->tx_timeout = eip_tx_timeout;
|
||||
}
|
||||
#endif
|
||||
if (dev)
|
||||
dev->netdev_ops = &eip_netdev_ops;
|
||||
return dev;
|
||||
}
|
||||
EXPORT_SYMBOL(__alloc_eip_netdev);
|
||||
|
Loading…
Reference in New Issue
Block a user