wifi: ath12k: correct the capital word typo
Rename the "ATH12k" word to "ATH12K" for consistent capitalization in the word. Signed-off-by: Karthikeyan Periyasamy <quic_periyasa@quicinc.com> Acked-by: Jeff Johnson <quic_jjohnson@quicinc.com> Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com> Link: https://msgid.link/20240405144524.1157122-1-quic_periyasa@quicinc.com
This commit is contained in:
parent
166a490f59
commit
df1f2b947f
2 changed files with 3 additions and 3 deletions
|
@ -1347,7 +1347,7 @@ struct ath12k_rx_desc_info *ath12k_dp_get_rx_desc(struct ath12k_base *ab,
|
|||
u16 ppt_idx, spt_idx;
|
||||
|
||||
ppt_idx = u32_get_bits(cookie, ATH12K_DP_CC_COOKIE_PPT);
|
||||
spt_idx = u32_get_bits(cookie, ATH12k_DP_CC_COOKIE_SPT);
|
||||
spt_idx = u32_get_bits(cookie, ATH12K_DP_CC_COOKIE_SPT);
|
||||
|
||||
if (ppt_idx > ATH12K_NUM_RX_SPT_PAGES ||
|
||||
spt_idx > ATH12K_MAX_SPT_ENTRIES)
|
||||
|
@ -1365,7 +1365,7 @@ struct ath12k_tx_desc_info *ath12k_dp_get_tx_desc(struct ath12k_base *ab,
|
|||
u16 ppt_idx, spt_idx;
|
||||
|
||||
ppt_idx = u32_get_bits(cookie, ATH12K_DP_CC_COOKIE_PPT);
|
||||
spt_idx = u32_get_bits(cookie, ATH12k_DP_CC_COOKIE_SPT);
|
||||
spt_idx = u32_get_bits(cookie, ATH12K_DP_CC_COOKIE_SPT);
|
||||
|
||||
if (ppt_idx < ATH12K_NUM_RX_SPT_PAGES ||
|
||||
ppt_idx > ab->dp.num_spt_pages ||
|
||||
|
|
|
@ -245,7 +245,7 @@ struct ath12k_pdev_dp {
|
|||
#define ATH12K_CC_SPT_MSB 8
|
||||
#define ATH12K_CC_PPT_MSB 19
|
||||
#define ATH12K_CC_PPT_SHIFT 9
|
||||
#define ATH12k_DP_CC_COOKIE_SPT GENMASK(8, 0)
|
||||
#define ATH12K_DP_CC_COOKIE_SPT GENMASK(8, 0)
|
||||
#define ATH12K_DP_CC_COOKIE_PPT GENMASK(19, 9)
|
||||
|
||||
#define DP_REO_QREF_NUM GENMASK(31, 16)
|
||||
|
|
Loading…
Add table
Reference in a new issue