Skip to content

Commit

Permalink
ath11k: rename debug_htt_stats.[c|h] to debugfs_htt_stats.[c|h]
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Kalle Valo committed Sep 22, 2020
1 parent cb4e57d commit 5629216
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion drivers/net/wireless/ath/ath11k/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/wireless/ath/ath11k/debugfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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] = {
Expand Down Expand Up @@ -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);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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__)
Expand Down Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/wireless/ath/ath11k/debugfs_sta.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5629216

Please sign in to comment.