ifb: convert to net_device_ops
Convert to new network device ops interface. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c02373bf27
commit
8dfcdf342d
|
@ -137,18 +137,23 @@ resched:
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const struct net_device_ops ifb_netdev_ops = {
|
||||||
|
.ndo_validate_addr = eth_validate_addr,
|
||||||
|
.ndo_open = ifb_open,
|
||||||
|
.ndo_stop = ifb_close,
|
||||||
|
};
|
||||||
|
|
||||||
static void ifb_setup(struct net_device *dev)
|
static void ifb_setup(struct net_device *dev)
|
||||||
{
|
{
|
||||||
/* Initialize the device structure. */
|
/* Initialize the device structure. */
|
||||||
dev->hard_start_xmit = ifb_xmit;
|
dev->hard_start_xmit = ifb_xmit;
|
||||||
dev->open = &ifb_open;
|
|
||||||
dev->stop = &ifb_close;
|
|
||||||
dev->destructor = free_netdev;
|
dev->destructor = free_netdev;
|
||||||
|
dev->netdev_ops = &ifb_netdev_ops;
|
||||||
|
|
||||||
/* Fill in device structure with ethernet-generic values. */
|
/* Fill in device structure with ethernet-generic values. */
|
||||||
ether_setup(dev);
|
ether_setup(dev);
|
||||||
dev->tx_queue_len = TX_Q_LIMIT;
|
dev->tx_queue_len = TX_Q_LIMIT;
|
||||||
dev->change_mtu = NULL;
|
|
||||||
dev->flags |= IFF_NOARP;
|
dev->flags |= IFF_NOARP;
|
||||||
dev->flags &= ~IFF_MULTICAST;
|
dev->flags &= ~IFF_MULTICAST;
|
||||||
random_ether_addr(dev->dev_addr);
|
random_ether_addr(dev->dev_addr);
|
||||||
|
|
Loading…
Reference in New Issue