mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
x25_asy: convert to net_device_ops
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6a8eba3bf4
commit
48f26ad5c0
@ -712,6 +712,14 @@ static int x25_asy_open_dev(struct net_device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct net_device_ops x25_asy_netdev_ops = {
|
||||
.ndo_open = x25_asy_open_dev,
|
||||
.ndo_stop = x25_asy_close,
|
||||
.ndo_start_xmit = x25_asy_xmit,
|
||||
.ndo_tx_timeout = x25_asy_timeout,
|
||||
.ndo_change_mtu = x25_asy_change_mtu,
|
||||
};
|
||||
|
||||
/* Initialise the X.25 driver. Called by the device init code */
|
||||
static void x25_asy_setup(struct net_device *dev)
|
||||
{
|
||||
@ -727,12 +735,8 @@ static void x25_asy_setup(struct net_device *dev)
|
||||
*/
|
||||
|
||||
dev->mtu = SL_MTU;
|
||||
dev->hard_start_xmit = x25_asy_xmit;
|
||||
dev->tx_timeout = x25_asy_timeout;
|
||||
dev->netdev_ops = &x25_asy_netdev_ops;
|
||||
dev->watchdog_timeo = HZ*20;
|
||||
dev->open = x25_asy_open_dev;
|
||||
dev->stop = x25_asy_close;
|
||||
dev->change_mtu = x25_asy_change_mtu;
|
||||
dev->hard_header_len = 0;
|
||||
dev->addr_len = 0;
|
||||
dev->type = ARPHRD_X25;
|
||||
|
Loading…
Reference in New Issue
Block a user