ath11k: rename debug_htt_stats.[c|h] to debugfs_htt_stats.[c|h]
authorKalle Valo <kvalo@codeaurora.org>
Wed, 16 Sep 2020 13:55:22 +0000 (16:55 +0300)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 22 Sep 2020 07:41:46 +0000 (10:41 +0300)
For consistency with debugfs.c rename debug_htt_stats files and functions to
debugfs_htt_stats.

No functional changes. Compile tested only.

Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/1600264523-12939-3-git-send-email-kvalo@codeaurora.org
drivers/net/wireless/ath/ath11k/Makefile
drivers/net/wireless/ath/ath11k/debugfs.c
drivers/net/wireless/ath/ath11k/debugfs_htt_stats.c [moved from drivers/net/wireless/ath/ath11k/debug_htt_stats.c with 99% similarity]
drivers/net/wireless/ath/ath11k/debugfs_htt_stats.h [moved from drivers/net/wireless/ath/ath11k/debug_htt_stats.h with 99% similarity]
drivers/net/wireless/ath/ath11k/debugfs_sta.c

index bb57d0e2dd9f63bf26d880fc4d7d53285ae472a7..c41d87bd025affeca7be41bef582f15a2ca30560 100644 (file)
@@ -18,7 +18,7 @@ ath11k-y += core.o \
            dbring.o \
            hw.o
 
-ath11k-$(CONFIG_ATH11K_DEBUGFS) += debugfs.o debug_htt_stats.o debugfs_sta.o
+ath11k-$(CONFIG_ATH11K_DEBUGFS) += debugfs.o debugfs_htt_stats.o debugfs_sta.o
 ath11k-$(CONFIG_NL80211_TESTMODE) += testmode.o
 ath11k-$(CONFIG_ATH11K_TRACING) += trace.o
 ath11k-$(CONFIG_THERMAL) += thermal.o
index 7ac5f69cb6ad193933dfd72c346e75a861742362..5193b308a9928e91e698d99441f81fc0cda77082 100644 (file)
@@ -10,7 +10,7 @@
 #include "wmi.h"
 #include "hal_rx.h"
 #include "dp_tx.h"
-#include "debug_htt_stats.h"
+#include "debugfs_htt_stats.h"
 #include "peer.h"
 
 static const char *htt_bp_umac_ring[HTT_SW_UMAC_RING_IDX_MAX] = {
@@ -1081,7 +1081,7 @@ int ath11k_debugfs_register(struct ath11k *ar)
        snprintf(buf, 100, "../../ath11k/%pd2", ar->debug.debugfs_pdev);
        debugfs_create_symlink("ath11k", ar->hw->wiphy->debugfsdir, buf);
 
-       ath11k_debug_htt_stats_init(ar);
+       ath11k_debugfs_htt_stats_init(ar);
 
        ath11k_debugfs_fw_stats_init(ar);
 
similarity index 99%
rename from drivers/net/wireless/ath/ath11k/debug_htt_stats.c
rename to drivers/net/wireless/ath/ath11k/debugfs_htt_stats.c
index ad3f08a5b03114c52277eb00d67d86a126ab7c98..6f6e8ca014a180906d076827cef45a8a9a4bd568 100644 (file)
@@ -8,7 +8,7 @@
 #include "dp_tx.h"
 #include "dp_rx.h"
 #include "debug.h"
-#include "debug_htt_stats.h"
+#include "debugfs_htt_stats.h"
 
 #define HTT_DBG_OUT(buf, len, fmt, ...) \
                        scnprintf(buf, len, fmt "\n", ##__VA_ARGS__)
@@ -4586,7 +4586,7 @@ static const struct file_operations fops_htt_stats_reset = {
        .llseek = default_llseek,
 };
 
-void ath11k_debug_htt_stats_init(struct ath11k *ar)
+void ath11k_debugfs_htt_stats_init(struct ath11k *ar)
 {
        spin_lock_init(&ar->debug.htt_stats.lock);
        debugfs_create_file("htt_stats_type", 0600, ar->debug.debugfs_pdev,
similarity index 99%
rename from drivers/net/wireless/ath/ath11k/debug_htt_stats.h
rename to drivers/net/wireless/ath/ath11k/debugfs_htt_stats.h
index 682a6ff222bdcf2e7c21e498ccb835f44f16e3fd..d2d01bfc5081c5811430a569224e04f62bad5b90 100644 (file)
@@ -1660,7 +1660,7 @@ struct htt_pdev_obss_pd_stats_tlv {
        u32        num_obss_tx_ppdu_failure;
 };
 
-void ath11k_debug_htt_stats_init(struct ath11k *ar);
+void ath11k_debugfs_htt_stats_init(struct ath11k *ar);
 
 struct htt_ring_backpressure_stats_tlv {
        u32 pdev_id;
index d189cc80805acca1921307cc38d9ec480e66d9ff..14f2e904a89db550628edc84aaab66cb223ef077 100644 (file)
@@ -9,7 +9,7 @@
 #include "peer.h"
 #include "debug.h"
 #include "dp_tx.h"
-#include "debug_htt_stats.h"
+#include "debugfs_htt_stats.h"
 
 void
 ath11k_accumulate_per_peer_tx_stats(struct ath11k_sta *arsta,