summaryrefslogtreecommitdiffstats
path: root/net/mac80211/rc80211_minstrel_debugfs.c
diff options
context:
space:
mode:
authorFelix Fietkau2018-10-06 19:35:00 +0200
committerJohannes Berg2018-10-11 16:01:00 +0200
commit5b5e87314efb558f2ff4b027b4d1ba386893e908 (patch)
tree4721ea18aca5c324c223f7153b1d4e25d2d6ee48 /net/mac80211/rc80211_minstrel_debugfs.c
parentmac80211: minstrel: Enable STBC and LDPC for VHT Rates (diff)
downloadkernel-qcow2-linux-5b5e87314efb558f2ff4b027b4d1ba386893e908.tar.gz
kernel-qcow2-linux-5b5e87314efb558f2ff4b027b4d1ba386893e908.tar.xz
kernel-qcow2-linux-5b5e87314efb558f2ff4b027b4d1ba386893e908.zip
mac80211: minstrel: remove unnecessary debugfs cleanup code
debugfs entries are cleaned up by debugfs_remove_recursive already. Signed-off-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/rc80211_minstrel_debugfs.c')
-rw-r--r--net/mac80211/rc80211_minstrel_debugfs.c18
1 files changed, 3 insertions, 15 deletions
diff --git a/net/mac80211/rc80211_minstrel_debugfs.c b/net/mac80211/rc80211_minstrel_debugfs.c
index 9ad7d63d3e5b..2e7266b81b19 100644
--- a/net/mac80211/rc80211_minstrel_debugfs.c
+++ b/net/mac80211/rc80211_minstrel_debugfs.c
@@ -214,19 +214,7 @@ minstrel_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
{
struct minstrel_sta_info *mi = priv_sta;
- mi->dbg_stats = debugfs_create_file("rc_stats", 0444, dir, mi,
- &minstrel_stat_fops);
-
- mi->dbg_stats_csv = debugfs_create_file("rc_stats_csv", 0444, dir, mi,
- &minstrel_stat_csv_fops);
-}
-
-void
-minstrel_remove_sta_debugfs(void *priv, void *priv_sta)
-{
- struct minstrel_sta_info *mi = priv_sta;
-
- debugfs_remove(mi->dbg_stats);
-
- debugfs_remove(mi->dbg_stats_csv);
+ debugfs_create_file("rc_stats", 0444, dir, mi, &minstrel_stat_fops);
+ debugfs_create_file("rc_stats_csv", 0444, dir, mi,
+ &minstrel_stat_csv_fops);
}