Commit 56292162 authored by Kalle Valo's avatar Kalle Valo
Browse files

ath11k: rename debug_htt_stats.[c|h] to debugfs_htt_stats.[c|h]



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: default avatarKalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/1600264523-12939-3-git-send-email-kvalo@codeaurora.org
parent cb4e57db
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
+2 −2
Original line number Diff line number Diff line
@@ -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);

+2 −2
Original line number Diff line number Diff line
@@ -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,
+1 −1
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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,