mirror of
https://github.com/torvalds/linux.git
synced 2025-04-06 00:16:18 +00:00

The last use of ieee80211_debugfs_key_sta_del() was removed in 2007 by commit 11a843b7e160 ("[MAC80211]: rework key handling") The last use of ieee80211_debugfs_key_add_mgmt_default() was removed in 2010 by commit f7e0104c1a4e ("mac80211: support separate default keys") The last use of ieee80211_debugfs_key_add_beacon_default() was removed in 2020 by commit e5473e80d467 ("mac80211: Support BIGTK configuration for Beacon protection") Remove them. Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org> Link: https://patch.msgid.link/20241224013257.185742-2-linux@treblig.org Signed-off-by: Johannes Berg <johannes.berg@intel.com>
30 lines
1.0 KiB
C
30 lines
1.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __MAC80211_DEBUGFS_KEY_H
|
|
#define __MAC80211_DEBUGFS_KEY_H
|
|
|
|
#ifdef CONFIG_MAC80211_DEBUGFS
|
|
void ieee80211_debugfs_key_add(struct ieee80211_key *key);
|
|
void ieee80211_debugfs_key_remove(struct ieee80211_key *key);
|
|
void ieee80211_debugfs_key_update_default(struct ieee80211_sub_if_data *sdata);
|
|
void ieee80211_debugfs_key_remove_mgmt_default(
|
|
struct ieee80211_sub_if_data *sdata);
|
|
void ieee80211_debugfs_key_remove_beacon_default(
|
|
struct ieee80211_sub_if_data *sdata);
|
|
#else
|
|
static inline void ieee80211_debugfs_key_add(struct ieee80211_key *key)
|
|
{}
|
|
static inline void ieee80211_debugfs_key_remove(struct ieee80211_key *key)
|
|
{}
|
|
static inline void ieee80211_debugfs_key_update_default(
|
|
struct ieee80211_sub_if_data *sdata)
|
|
{}
|
|
static inline void ieee80211_debugfs_key_remove_mgmt_default(
|
|
struct ieee80211_sub_if_data *sdata)
|
|
{}
|
|
static inline void ieee80211_debugfs_key_remove_beacon_default(
|
|
struct ieee80211_sub_if_data *sdata)
|
|
{}
|
|
#endif
|
|
|
|
#endif /* __MAC80211_DEBUGFS_KEY_H */
|