forked from luck/tmp_suning_uos_patched
ipw2200: 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
3e47fcea20
commit
44e9ad0b5a
@ -11529,6 +11529,15 @@ static int ipw_prom_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
|||||||
return -EOPNOTSUPP;
|
return -EOPNOTSUPP;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const struct net_device_ops ipw_prom_netdev_ops = {
|
||||||
|
.ndo_open = ipw_prom_open,
|
||||||
|
.ndo_stop = ipw_prom_stop,
|
||||||
|
.ndo_start_xmit = ipw_prom_hard_start_xmit,
|
||||||
|
.ndo_change_mtu = ieee80211_change_mtu,
|
||||||
|
.ndo_set_mac_address = eth_mac_addr,
|
||||||
|
.ndo_validate_addr = eth_validate_addr,
|
||||||
|
};
|
||||||
|
|
||||||
static int ipw_prom_alloc(struct ipw_priv *priv)
|
static int ipw_prom_alloc(struct ipw_priv *priv)
|
||||||
{
|
{
|
||||||
int rc = 0;
|
int rc = 0;
|
||||||
@ -11548,9 +11557,7 @@ static int ipw_prom_alloc(struct ipw_priv *priv)
|
|||||||
memcpy(priv->prom_net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
|
memcpy(priv->prom_net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
|
||||||
|
|
||||||
priv->prom_net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
|
priv->prom_net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
|
||||||
priv->prom_net_dev->open = ipw_prom_open;
|
priv->prom_net_dev->netdev_ops = &ipw_prom_netdev_ops;
|
||||||
priv->prom_net_dev->stop = ipw_prom_stop;
|
|
||||||
priv->prom_net_dev->hard_start_xmit = ipw_prom_hard_start_xmit;
|
|
||||||
|
|
||||||
priv->prom_priv->ieee->iw_mode = IW_MODE_MONITOR;
|
priv->prom_priv->ieee->iw_mode = IW_MODE_MONITOR;
|
||||||
SET_NETDEV_DEV(priv->prom_net_dev, &priv->pci_dev->dev);
|
SET_NETDEV_DEV(priv->prom_net_dev, &priv->pci_dev->dev);
|
||||||
@ -11578,6 +11585,17 @@ static void ipw_prom_free(struct ipw_priv *priv)
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static const struct net_device_ops ipw_netdev_ops = {
|
||||||
|
.ndo_init = ipw_net_init,
|
||||||
|
.ndo_open = ipw_net_open,
|
||||||
|
.ndo_stop = ipw_net_stop,
|
||||||
|
.ndo_set_multicast_list = ipw_net_set_multicast_list,
|
||||||
|
.ndo_set_mac_address = ipw_net_set_mac_address,
|
||||||
|
.ndo_start_xmit = ieee80211_xmit,
|
||||||
|
.ndo_change_mtu = ieee80211_change_mtu,
|
||||||
|
.ndo_set_mac_address = eth_mac_addr,
|
||||||
|
.ndo_validate_addr = eth_validate_addr,
|
||||||
|
};
|
||||||
|
|
||||||
static int __devinit ipw_pci_probe(struct pci_dev *pdev,
|
static int __devinit ipw_pci_probe(struct pci_dev *pdev,
|
||||||
const struct pci_device_id *ent)
|
const struct pci_device_id *ent)
|
||||||
@ -11679,11 +11697,7 @@ static int __devinit ipw_pci_probe(struct pci_dev *pdev,
|
|||||||
priv->ieee->perfect_rssi = -20;
|
priv->ieee->perfect_rssi = -20;
|
||||||
priv->ieee->worst_rssi = -85;
|
priv->ieee->worst_rssi = -85;
|
||||||
|
|
||||||
net_dev->open = ipw_net_open;
|
net_dev->netdev_ops = &ipw_netdev_ops;
|
||||||
net_dev->stop = ipw_net_stop;
|
|
||||||
net_dev->init = ipw_net_init;
|
|
||||||
net_dev->set_multicast_list = ipw_net_set_multicast_list;
|
|
||||||
net_dev->set_mac_address = ipw_net_set_mac_address;
|
|
||||||
priv->wireless_data.spy_data = &priv->ieee->spy_data;
|
priv->wireless_data.spy_data = &priv->ieee->spy_data;
|
||||||
net_dev->wireless_data = &priv->wireless_data;
|
net_dev->wireless_data = &priv->wireless_data;
|
||||||
net_dev->wireless_handlers = &ipw_wx_handler_def;
|
net_dev->wireless_handlers = &ipw_wx_handler_def;
|
||||||
|
Loading…
Reference in New Issue
Block a user