labether: 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:
Stephen Hemminger 2009-03-20 19:36:18 +00:00 committed by David S. Miller
parent ea2ebaf822
commit 39549b1e83
1 changed files with 8 additions and 4 deletions

View File

@ -303,13 +303,17 @@ static int lapbeth_close(struct net_device *dev)
/* ------------------------------------------------------------------------ */ /* ------------------------------------------------------------------------ */
static const struct net_device_ops lapbeth_netdev_ops = {
.ndo_open = lapbeth_open,
.ndo_stop = lapbeth_close,
.ndo_start_xmit = lapbeth_xmit,
.ndo_set_mac_address = lapbeth_set_mac_address,
};
static void lapbeth_setup(struct net_device *dev) static void lapbeth_setup(struct net_device *dev)
{ {
dev->hard_start_xmit = lapbeth_xmit; dev->netdev_ops = &lapbeth_netdev_ops;
dev->open = lapbeth_open;
dev->stop = lapbeth_close;
dev->destructor = free_netdev; dev->destructor = free_netdev;
dev->set_mac_address = lapbeth_set_mac_address;
dev->type = ARPHRD_X25; dev->type = ARPHRD_X25;
dev->hard_header_len = 3; dev->hard_header_len = 3;
dev->mtu = 1000; dev->mtu = 1000;