1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  *  Copyright (C) 2002 Intersil Americas Inc.
4  *            (C) 2003 Aurelien Alleaume <slts@free.fr>
5  *            (C) 2003 Luis R. Rodriguez <mcgrof@ruslug.rutgers.edu>
6  */
7 
8 #ifndef _ISL_IOCTL_H
9 #define _ISL_IOCTL_H
10 
11 #include "islpci_mgt.h"
12 #include "islpci_dev.h"
13 
14 #include <net/iw_handler.h>	/* New driver API */
15 
16 #define SUPPORTED_WIRELESS_EXT                  19
17 
18 void prism54_mib_init(islpci_private *);
19 
20 struct iw_statistics *prism54_get_wireless_stats(struct net_device *);
21 void prism54_update_stats(struct work_struct *);
22 
23 void prism54_acl_init(struct islpci_acl *);
24 void prism54_acl_clean(struct islpci_acl *);
25 
26 void prism54_process_trap(struct work_struct *);
27 
28 void prism54_wpa_bss_ie_init(islpci_private *priv);
29 void prism54_wpa_bss_ie_clean(islpci_private *priv);
30 
31 int prism54_set_mac_address(struct net_device *, void *);
32 
33 extern const struct iw_handler_def prism54_handler_def;
34 
35 #endif				/* _ISL_IOCTL_H */
36