Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.5-rc6 22 lines 546 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Implementation of mac80211 API. 4 * 5 * Copyright (c) 2017-2019, Silicon Laboratories, Inc. 6 * Copyright (c) 2010, ST-Ericsson 7 */ 8#ifndef WFX_KEY_H 9#define WFX_KEY_H 10 11#include <net/mac80211.h> 12 13struct wfx_dev; 14struct wfx_vif; 15 16int wfx_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, 17 struct ieee80211_vif *vif, struct ieee80211_sta *sta, 18 struct ieee80211_key_conf *key); 19int wfx_upload_keys(struct wfx_vif *wvif); 20void wfx_wep_key_work(struct work_struct *work); 21 22#endif /* WFX_STA_H */