mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
ibmtr: 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
9fd3238e95
commit
c86d874029
1 changed files with 9 additions and 5 deletions
|
@ -815,17 +815,21 @@ static unsigned char __devinit get_sram_size(struct tok_info *adapt_info)
|
|||
|
||||
/*****************************************************************************/
|
||||
|
||||
static const struct net_device_ops trdev_netdev_ops = {
|
||||
.ndo_open = tok_open,
|
||||
.ndo_stop = tok_close,
|
||||
.ndo_start_xmit = tok_send_packet,
|
||||
.ndo_set_multicast_list = tok_set_multicast_list,
|
||||
.ndo_change_mtu = ibmtr_change_mtu,
|
||||
};
|
||||
|
||||
static int __devinit trdev_init(struct net_device *dev)
|
||||
{
|
||||
struct tok_info *ti = netdev_priv(dev);
|
||||
|
||||
SET_PAGE(ti->srb_page);
|
||||
ti->open_failure = NO ;
|
||||
dev->open = tok_open;
|
||||
dev->stop = tok_close;
|
||||
dev->hard_start_xmit = tok_send_packet;
|
||||
dev->set_multicast_list = tok_set_multicast_list;
|
||||
dev->change_mtu = ibmtr_change_mtu;
|
||||
dev->netdev_ops = &trdev_netdev_ops;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue