2019-09-19 14:25:47 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/*
|
2021-09-13 15:01:56 +02:00
|
|
|
* Key management related functions.
|
2019-09-19 14:25:47 +00:00
|
|
|
*
|
2020-10-07 12:19:41 +02:00
|
|
|
* Copyright (c) 2017-2020, Silicon Laboratories, Inc.
|
2019-09-19 14:25:47 +00:00
|
|
|
* Copyright (c) 2010, ST-Ericsson
|
|
|
|
*/
|
|
|
|
#ifndef WFX_KEY_H
|
|
|
|
#define WFX_KEY_H
|
|
|
|
|
2021-03-09 15:51:56 +01:00
|
|
|
#include <net/mac80211.h>
|
|
|
|
|
2019-09-19 14:25:47 +00:00
|
|
|
struct wfx_dev;
|
|
|
|
struct wfx_vif;
|
|
|
|
|
2022-01-13 09:55:13 +01:00
|
|
|
int wfx_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, struct ieee80211_vif *vif,
|
|
|
|
struct ieee80211_sta *sta, struct ieee80211_key_conf *key);
|
2019-09-19 14:25:47 +00:00
|
|
|
|
2021-09-13 15:02:00 +02:00
|
|
|
#endif
|