diff options
author | Kalle Valo <kvalo@codeaurora.org> | 2020-05-06 12:12:27 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2020-05-06 12:12:27 +0300 |
commit | 7f65f6118a53eeb3cd9baa0ceb5519b478758cd9 (patch) | |
tree | 6ccc52a7066ce6a1ba4ee73e7b2e9a5d0d38b694 /drivers/net/wireless/ath/ath10k/debug.c | |
parent | cbb1404f65414130fb89e52a97b9d853d303dc5c (diff) | |
parent | 14dd3a71ccb7081d5d4959370794bbabc3258b34 (diff) | |
download | kernel_replicant_linux-7f65f6118a53eeb3cd9baa0ceb5519b478758cd9.tar.gz kernel_replicant_linux-7f65f6118a53eeb3cd9baa0ceb5519b478758cd9.tar.bz2 kernel_replicant_linux-7f65f6118a53eeb3cd9baa0ceb5519b478758cd9.zip |
Merge ath-next from git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
ath.git patches for v5.8. Major changes:
ath11k
* add 802.11 encapsulation offload on hardware support
* add htt_peer_stats_reset debugfs file
ath10k
* sdio: decrease power consumption
* sdio: add HTT TX bundle support to increase throughput
* sdio: add rx bitrate reporting
ath9k
* improvements to AR9002 calibration logic
carl9170
* remove buggy P2P_GO support
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/debug.c')
-rw-r--r-- | drivers/net/wireless/ath/ath10k/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath10k/debug.c b/drivers/net/wireless/ath/ath10k/debug.c index f811e6940fb0..e8250a665433 100644 --- a/drivers/net/wireless/ath/ath10k/debug.c +++ b/drivers/net/wireless/ath/ath10k/debug.c @@ -349,7 +349,7 @@ free: spin_unlock_bh(&ar->data_lock); } -static int ath10k_debug_fw_stats_request(struct ath10k *ar) +int ath10k_debug_fw_stats_request(struct ath10k *ar) { unsigned long timeout, time_left; int ret; @@ -778,7 +778,7 @@ static ssize_t ath10k_mem_value_read(struct file *file, ret = ath10k_hif_diag_read(ar, *ppos, buf, count); if (ret) { - ath10k_warn(ar, "failed to read address 0x%08x via diagnose window fnrom debugfs: %d\n", + ath10k_warn(ar, "failed to read address 0x%08x via diagnose window from debugfs: %d\n", (u32)(*ppos), ret); goto exit; } |