mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
Staging: vt6655: use net_device_ops for management functions
vt6655: use net_device_ops for management functions Signed-off-by: Forest Bond <forest@alittletooquiet.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
7bb8dc2d7e
commit
5721135408
@ -968,6 +968,16 @@ static BOOL device_release_WPADEV(PSDevice pDevice)
|
||||
}
|
||||
|
||||
|
||||
static const struct net_device_ops device_netdev_ops = {
|
||||
.ndo_open = device_open,
|
||||
.ndo_stop = device_close,
|
||||
.ndo_do_ioctl = device_ioctl,
|
||||
.ndo_get_stats = device_get_stats,
|
||||
.ndo_start_xmit = device_xmit,
|
||||
.ndo_set_multicast_list = device_set_multi,
|
||||
};
|
||||
|
||||
|
||||
#ifndef PRIVATE_OBJ
|
||||
|
||||
static int
|
||||
@ -1134,12 +1144,7 @@ device_found1(struct pci_dev *pcid, const struct pci_device_id *ent)
|
||||
pDevice->pMgmt = &(pDevice->sMgmtObj);
|
||||
|
||||
dev->irq = pcid->irq;
|
||||
dev->open = device_open;
|
||||
dev->hard_start_xmit = device_xmit;
|
||||
dev->stop = device_close;
|
||||
dev->get_stats = device_get_stats;
|
||||
dev->set_multicast_list = device_set_multi;
|
||||
dev->do_ioctl = device_ioctl;
|
||||
dev->netdev_ops = &device_netdev_ops;
|
||||
|
||||
#ifdef WIRELESS_EXT
|
||||
//Einsn Modify for ubuntu-7.04
|
||||
|
@ -133,7 +133,12 @@ static int hostap_enable_hostapd(PSDevice pDevice, int rtnl_locked)
|
||||
apdev_priv = netdev_priv(pDevice->apdev);
|
||||
*apdev_priv = *pDevice;
|
||||
memcpy(pDevice->apdev->dev_addr, dev->dev_addr, ETH_ALEN);
|
||||
pDevice->apdev->hard_start_xmit = pDevice->tx_80211;
|
||||
|
||||
const struct net_device_ops apdev_netdev_ops = {
|
||||
.ndo_start_xmit = pDevice->tx_80211,
|
||||
};
|
||||
pDevice->apdev->netdev_ops = &apdev_netdev_ops;
|
||||
|
||||
pDevice->apdev->type = ARPHRD_IEEE80211;
|
||||
|
||||
pDevice->apdev->base_addr = dev->base_addr;
|
||||
|
Loading…
Reference in New Issue
Block a user