mac80211_hwsim: 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:
committed by
David S. Miller
parent
2bd9f54d46
commit
98d2faaeb7
@@ -739,10 +739,16 @@ static struct device_driver mac80211_hwsim_driver = {
|
|||||||
.name = "mac80211_hwsim"
|
.name = "mac80211_hwsim"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct net_device_ops hwsim_netdev_ops = {
|
||||||
|
.ndo_start_xmit = hwsim_mon_xmit,
|
||||||
|
.ndo_change_mtu = eth_change_mtu,
|
||||||
|
.ndo_set_mac_address = eth_mac_addr,
|
||||||
|
.ndo_validate_addr = eth_validate_addr,
|
||||||
|
};
|
||||||
|
|
||||||
static void hwsim_mon_setup(struct net_device *dev)
|
static void hwsim_mon_setup(struct net_device *dev)
|
||||||
{
|
{
|
||||||
dev->hard_start_xmit = hwsim_mon_xmit;
|
dev->netdev_ops = &hwsim_netdev_ops;
|
||||||
dev->destructor = free_netdev;
|
dev->destructor = free_netdev;
|
||||||
ether_setup(dev);
|
ether_setup(dev);
|
||||||
dev->tx_queue_len = 0;
|
dev->tx_queue_len = 0;
|
||||||
|
Reference in New Issue
Block a user