Skip to content

Commit

Permalink
lec: convert to net_device_ops
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Stephen Hemminger authored and David S. Miller committed Jan 21, 2009
1 parent 162619e commit 004b322
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions net/atm/lec.c
Original file line number Diff line number Diff line change
Expand Up @@ -667,17 +667,19 @@ static void lec_set_multicast_list(struct net_device *dev)
return;
}

static const struct net_device_ops lec_netdev_ops = {
.ndo_open = lec_open,
.ndo_stop = lec_close,
.ndo_start_xmit = lec_start_xmit,
.ndo_change_mtu = lec_change_mtu,
.ndo_tx_timeout = lec_tx_timeout,
.ndo_set_multicast_list = lec_set_multicast_list,
};


static void lec_init(struct net_device *dev)
{
dev->change_mtu = lec_change_mtu;
dev->open = lec_open;
dev->stop = lec_close;
dev->hard_start_xmit = lec_start_xmit;
dev->tx_timeout = lec_tx_timeout;

dev->get_stats = lec_get_stats;
dev->set_multicast_list = lec_set_multicast_list;
dev->do_ioctl = NULL;
dev->netdev_ops = &lec_netdev_ops;
printk("%s: Initialized!\n", dev->name);
}

Expand Down

0 comments on commit 004b322

Please sign in to comment.