dummy: 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
008298231a
commit
aa18e9e88c
1 changed files with 10 additions and 5 deletions
|
@ -57,18 +57,23 @@ static void set_multicast_list(struct net_device *dev)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const struct net_device_ops dummy_netdev_ops = {
|
||||||
|
.ndo_start_xmit = dummy_xmit,
|
||||||
|
.ndo_validate_addr = eth_validate_addr,
|
||||||
|
.ndo_set_multicast_list = set_multicast_list,
|
||||||
|
.ndo_set_mac_address = dummy_set_address,
|
||||||
|
};
|
||||||
|
|
||||||
static void dummy_setup(struct net_device *dev)
|
static void dummy_setup(struct net_device *dev)
|
||||||
{
|
{
|
||||||
|
ether_setup(dev);
|
||||||
|
|
||||||
/* Initialize the device structure. */
|
/* Initialize the device structure. */
|
||||||
dev->hard_start_xmit = dummy_xmit;
|
dev->netdev_ops = &dummy_netdev_ops;
|
||||||
dev->set_multicast_list = set_multicast_list;
|
|
||||||
dev->set_mac_address = dummy_set_address;
|
|
||||||
dev->destructor = free_netdev;
|
dev->destructor = free_netdev;
|
||||||
|
|
||||||
/* Fill in device structure with ethernet-generic values. */
|
/* Fill in device structure with ethernet-generic values. */
|
||||||
ether_setup(dev);
|
|
||||||
dev->tx_queue_len = 0;
|
dev->tx_queue_len = 0;
|
||||||
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 a new issue