developer | 3fa816c | 2022-04-19 10:21:20 +0800 | [diff] [blame] | 1 | From 053df93aaa079c2942eadf52fb33f76dfffa2f05 Mon Sep 17 00:00:00 2001 |
| 2 | From: Peter Chiu <chui-hao.chiu@mediatek.com> |
| 3 | Date: Tue, 22 Mar 2022 15:49:04 +0800 |
| 4 | Subject: [PATCH] mt76: mt7915: fix table_mask to u16 |
| 5 | |
| 6 | mt7915 can support 16 twt stations so modify table_mask to u16. |
| 7 | |
| 8 | Signed-off-by: Peter Chiu <chui-hao.chiu@mediatek.com> |
| 9 | --- |
| 10 | mt7915/mt7915.h | 2 +- |
| 11 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 12 | |
| 13 | diff --git a/mt7915/mt7915.h b/mt7915/mt7915.h |
| 14 | index 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 | -- |
| 27 | 2.18.0 |
| 28 | |