Message ID | 1564628769-23490-1-git-send-email-gseset@codeaurora.org (mailing list archive) |
---|---|
State | Accepted |
Commit | a349c4b7a0806238871d6436a5d8dfd633c4d913 |
Delegated to: | Kalle Valo |
Headers | show |
Series | [v2] ath11k: Fix htt stats sounding info and pdev cca stats | expand |
Ganesh Sesetti <gseset@codeaurora.org> wrote: > The Previous configuartion of htt stats sounding info and pdev cca stats > are invalid due to that getting time out error. > > Changing htt stats sounding info value from 0xFF to 0x00 and htt pdev cca > stats from 0x10 to 0x00 > > Signed-off-by: Ganesh Sesetti <gseset@codeaurora.org> > Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Patch applied to ath11k-post-bringup branch of ath.git, thanks. a349c4b7a080 ath11k: Fix htt stats sounding info and pdev cca stats
diff --git a/drivers/net/wireless/ath/ath11k/dp.h b/drivers/net/wireless/ath/ath11k/dp.h index bda5ac27f20d..0bd3a5c06471 100644 --- a/drivers/net/wireless/ath/ath11k/dp.h +++ b/drivers/net/wireless/ath/ath11k/dp.h @@ -1365,8 +1365,8 @@ struct htt_ext_stats_cfg_cmd { #define HTT_STAT_DEFAULT_CFG0_ALL_CMDQS 0xffff #define HTT_STAT_DEFAULT_CFG0_ALL_RINGS 0xffff #define HTT_STAT_DEFAULT_CFG0_ACTIVE_PEERS 0xff -#define HTT_STAT_DEFAULT_CFG0_CCA_CUMULATIVE 0x10 -#define HTT_STAT_DEFAULT_CFG0_ACTIVE_VDEVS 0xff +#define HTT_STAT_DEFAULT_CFG0_CCA_CUMULATIVE 0x00 +#define HTT_STAT_DEFAULT_CFG0_ACTIVE_VDEVS 0x00 /* HTT_DBG_EXT_STATS_PEER_INFO * PARAMS:
The Previous configuartion of htt stats sounding info and pdev cca stats are invalid due to that getting time out error. Changing htt stats sounding info value from 0xFF to 0x00 and htt pdev cca stats from 0x10 to 0x00 Signed-off-by: Ganesh Sesetti <gseset@codeaurora.org> --- v2: Added the reson for htt stats sounding info and pdev cca stats drivers/net/wireless/ath/ath11k/dp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)