blob: 61106fca069a6c3944e473810a9def11665c88b6 [file] [log] [blame]
developerc2cfe0f2023-09-22 04:11:09 +08001From 1443f908c6eb33e33413fd20016be92f24557ce4 Mon Sep 17 00:00:00 2001
2From: Yi-Chia Hsieh <yi-chia.hsieh@mediatek.com>
3Date: Wed, 28 Jun 2023 05:07:43 +0800
4Subject: [PATCH 1020/1024] wifi: mt76: mt7996: Fix incorrect UWTBL_LEN_IN_DW
5 parameter
6
7The UWTBL length is 16 DW. Correct the len to 16 so that we can
8see full UWTBL when checking wtbl with debugfs.
9
10Signed-off-by: Yi-Chia Hsieh <yi-chia.hsieh@mediatek.com>
11---
12 mt7996/mtk_debug.h | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/mt7996/mtk_debug.h b/mt7996/mtk_debug.h
16index 368f0bcf0..9718c2cbe 100644
17--- a/mt7996/mtk_debug.h
18+++ b/mt7996/mtk_debug.h
19@@ -834,7 +834,7 @@ enum cipher_suit {
20 };
21
22 #define LWTBL_LEN_IN_DW 36
23-#define UWTBL_LEN_IN_DW 10
24+#define UWTBL_LEN_IN_DW 16
25
26 #define MT_DBG_WTBL_BASE 0x820D8000
27
28--
292.39.2
30