blob: e9184f37d98be7b65b73381299a7393161bb90cc [file] [log] [blame]
developere2cc0fa2022-03-29 17:31:03 +08001From 053df93aaa079c2942eadf52fb33f76dfffa2f05 Mon Sep 17 00:00:00 2001
2From: Peter Chiu <chui-hao.chiu@mediatek.com>
3Date: Tue, 22 Mar 2022 15:49:04 +0800
4Subject: [PATCH] mt76: mt7915: fix table_mask to u16
5
6mt7915 can support 16 twt stations so modify table_mask to u16.
7
8Signed-off-by: Peter Chiu <chui-hao.chiu@mediatek.com>
9---
10 mt7915/mt7915.h | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/mt7915/mt7915.h b/mt7915/mt7915.h
14index 6efa0a2e..4b6eda95 100644
15--- a/mt7915/mt7915.h
16+++ b/mt7915/mt7915.h
17@@ -319,7 +319,7 @@ struct mt7915_dev {
18 void *cal;
19
20 struct {
21- u8 table_mask;
22+ u16 table_mask;
23 u8 n_agrt;
24 } twt;
25
26--
272.18.0
28