mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-13 04:06:37 +07:00
5dfa3c2f10
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details you should have received a copy of the gnu general public license along with this program if not see http www gnu org licenses extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 15 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190530000437.237481593@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
36 lines
971 B
C
36 lines
971 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2002 Intersil Americas Inc.
|
|
* (C) 2003 Aurelien Alleaume <slts@free.fr>
|
|
* (C) 2003 Luis R. Rodriguez <mcgrof@ruslug.rutgers.edu>
|
|
*/
|
|
|
|
#ifndef _ISL_IOCTL_H
|
|
#define _ISL_IOCTL_H
|
|
|
|
#include "islpci_mgt.h"
|
|
#include "islpci_dev.h"
|
|
|
|
#include <net/iw_handler.h> /* New driver API */
|
|
|
|
#define SUPPORTED_WIRELESS_EXT 19
|
|
|
|
void prism54_mib_init(islpci_private *);
|
|
|
|
struct iw_statistics *prism54_get_wireless_stats(struct net_device *);
|
|
void prism54_update_stats(struct work_struct *);
|
|
|
|
void prism54_acl_init(struct islpci_acl *);
|
|
void prism54_acl_clean(struct islpci_acl *);
|
|
|
|
void prism54_process_trap(struct work_struct *);
|
|
|
|
void prism54_wpa_bss_ie_init(islpci_private *priv);
|
|
void prism54_wpa_bss_ie_clean(islpci_private *priv);
|
|
|
|
int prism54_set_mac_address(struct net_device *, void *);
|
|
|
|
extern const struct iw_handler_def prism54_handler_def;
|
|
|
|
#endif /* _ISL_IOCTL_H */
|