Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 161990
b: refs/heads/master
c: dd8db70
h: refs/heads/master
v: v3
  • Loading branch information
Forest Bond authored and Greg Kroah-Hartman committed Sep 15, 2009
1 parent 652e83f commit d08095e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1e28efa3eb3cdfe6a3be0499d309fb75250c1028
refs/heads/master: dd8db704adce547bd099096a6431aada124867a4
7 changes: 6 additions & 1 deletion trunk/drivers/staging/vt6656/hostap.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,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;
Expand Down
19 changes: 13 additions & 6 deletions trunk/drivers/staging/vt6656/main_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,17 @@ static int vntwusb_resume(struct usb_interface *intf)
}
#endif


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,
};


#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)

static int
Expand Down Expand Up @@ -896,12 +907,8 @@ vntwusb_found1(struct usb_device *udev, UINT interface, const struct usb_device_
pDevice->tx_80211 = device_dma0_tx_80211;
pDevice->sMgmtObj.pAdapter = (PVOID)pDevice;

netdev->open = device_open;
netdev->hard_start_xmit = device_xmit;
netdev->stop = device_close;
netdev->get_stats = device_get_stats;
netdev->set_multicast_list = device_set_multi;
netdev->do_ioctl = device_ioctl;
netdev->netdev_ops = &device_netdev_ops;

#ifdef WIRELESS_EXT

//2007-0508-01<Add>by MikeLiu
Expand Down

0 comments on commit d08095e

Please sign in to comment.