mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
sbni: 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
fe6c6fbbcd
commit
7dd0b6e0fe
@ -206,15 +206,21 @@ sbni_isa_probe( struct net_device *dev )
|
||||
}
|
||||
}
|
||||
|
||||
static const struct net_device_ops sbni_netdev_ops = {
|
||||
.ndo_open = sbni_open,
|
||||
.ndo_stop = sbni_close,
|
||||
.ndo_start_xmit = sbni_start_xmit,
|
||||
.ndo_set_multicast_list = set_multicast_list,
|
||||
.ndo_do_ioctl = sbni_ioctl,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
.ndo_set_mac_address = eth_mac_addr,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
};
|
||||
|
||||
static void __init sbni_devsetup(struct net_device *dev)
|
||||
{
|
||||
ether_setup( dev );
|
||||
dev->open = &sbni_open;
|
||||
dev->stop = &sbni_close;
|
||||
dev->hard_start_xmit = &sbni_start_xmit;
|
||||
dev->get_stats = &sbni_get_stats;
|
||||
dev->set_multicast_list = &set_multicast_list;
|
||||
dev->do_ioctl = &sbni_ioctl;
|
||||
dev->netdev_ops = &sbni_netdev_ops;
|
||||
}
|
||||
|
||||
int __init sbni_probe(int unit)
|
||||
@ -227,6 +233,8 @@ int __init sbni_probe(int unit)
|
||||
if (!dev)
|
||||
return -ENOMEM;
|
||||
|
||||
dev->netdev_ops = &sbni_netdev_ops;
|
||||
|
||||
sprintf(dev->name, "sbni%d", unit);
|
||||
netdev_boot_setup_check(dev);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user