Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.1.
 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
18void prism54_mib_init(islpci_private *);
19
20struct iw_statistics *prism54_get_wireless_stats(struct net_device *);
21void prism54_update_stats(struct work_struct *);
22
23void prism54_acl_init(struct islpci_acl *);
24void prism54_acl_clean(struct islpci_acl *);
25
26void prism54_process_trap(struct work_struct *);
27
28void prism54_wpa_bss_ie_init(islpci_private *priv);
29void prism54_wpa_bss_ie_clean(islpci_private *priv);
30
31int prism54_set_mac_address(struct net_device *, void *);
32
33extern const struct iw_handler_def prism54_handler_def;
34
35#endif				/* _ISL_IOCTL_H */