diff options
| author | Benjamin Berg <[email protected]> | 2023-06-12 15:51:02 +0000 |
|---|---|---|
| committer | Johannes Berg <[email protected]> | 2023-06-14 10:32:17 +0000 |
| commit | 3f244876ef73c8ef5eaeb8f01768a2bf33c4421e (patch) | |
| tree | e7e4b3638152129a61b5e144a7145e64ae913ab0 /drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c | |
| parent | wifi: mac80211: Fix permissions for valid_links debugfs entry (diff) | |
| download | kernel-3f244876ef73c8ef5eaeb8f01768a2bf33c4421e.tar.gz kernel-3f244876ef73c8ef5eaeb8f01768a2bf33c4421e.zip | |
wifi: iwlwifi: make debugfs entries link specific
All of the station elements are really elements for the link. Create
them from the correct callback and return the link specific information
rather than always using the default link.
Signed-off-by: Benjamin Berg <[email protected]>
Signed-off-by: Gregory Greenman <[email protected]>
Link: https://lore.kernel.org/r/20230612184434.a8e0c40d325e.I374d9433c3b8694667e1ce550d65f6f1f0d23c05@changeid
Signed-off-by: Johannes Berg <[email protected]>
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c')
| -rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c index 91c38d42d034..f8fd34305e69 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c @@ -6255,7 +6255,7 @@ const struct ieee80211_ops iwl_mvm_hw_ops = { .can_aggregate_in_amsdu = iwl_mvm_mac_can_aggregate, #ifdef CONFIG_IWLWIFI_DEBUGFS - .sta_add_debugfs = iwl_mvm_sta_add_debugfs, + .link_sta_add_debugfs = iwl_mvm_link_sta_add_debugfs, #endif .set_hw_timestamp = iwl_mvm_set_hw_timestamp, }; |
