[PATCH] prism54 : WE-17 support
My patch that adds WE-17 support to the Prism54 driver went already in the kernel, except for a tiny bit that was dropped on the way. This is the missing bit.... Tested with 2.6.13 (with real HW). Signed-off-by: Jean Tourrilhes <jt@hpl.hp.com> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
parent
00b309f561
commit
61bd496314
2 changed files with 5 additions and 1 deletions
|
@ -2727,6 +2727,9 @@ const struct iw_handler_def prism54_handler_def = {
|
|||
.standard = (iw_handler *) prism54_handler,
|
||||
.private = (iw_handler *) prism54_private_handler,
|
||||
.private_args = (struct iw_priv_args *) prism54_private_args,
|
||||
#if WIRELESS_EXT > 16
|
||||
.get_wireless_stats = prism54_get_wireless_stats,
|
||||
#endif /* WIRELESS_EXT > 16 */
|
||||
#if WIRELESS_EXT == 16
|
||||
.spy_offset = offsetof(islpci_private, spy_data),
|
||||
#endif /* WIRELESS_EXT == 16 */
|
||||
|
|
|
@ -815,7 +815,6 @@ islpci_setup(struct pci_dev *pdev)
|
|||
ndev->open = &islpci_open;
|
||||
ndev->stop = &islpci_close;
|
||||
ndev->get_stats = &islpci_statistics;
|
||||
ndev->get_wireless_stats = &prism54_get_wireless_stats;
|
||||
ndev->do_ioctl = &prism54_ioctl;
|
||||
ndev->wireless_handlers =
|
||||
(struct iw_handler_def *) &prism54_handler_def;
|
||||
|
@ -844,6 +843,8 @@ islpci_setup(struct pci_dev *pdev)
|
|||
/* Add pointers to enable iwspy support. */
|
||||
priv->wireless_data.spy_data = &priv->spy_data;
|
||||
ndev->wireless_data = &priv->wireless_data;
|
||||
#else /* WIRELESS_EXT > 16 */
|
||||
ndev->get_wireless_stats = &prism54_get_wireless_stats;
|
||||
#endif /* WIRELESS_EXT > 16 */
|
||||
|
||||
/* save the start and end address of the PCI memory area */
|
||||
|
|
Loading…
Reference in a new issue