blob: 948c51b196beb329e022a4d9c066d60a144758af [file] [log] [blame]
developerebda9012024-02-22 13:42:45 +08001From 7a733993211ad46cf3032038c1e7e6bdc2322336 Mon Sep 17 00:00:00 2001
2From: Michael-CY Lee <michael-cy.lee@mediatek.com>
3Date: Tue, 5 Sep 2023 09:43:25 +0800
4Subject: [PATCH] ACS: Fix typo in bw_40 frequency array
5
6The range for the 5 GHz channel 118 was encoded with an incorrect
7channel number.
8
9Fixes: ed8e13decc71 (ACS: Extract bw40/80/160 freqs out of acs_usable_bwXXX_chan())
10Signed-off-by: Michael Lee <michael-cy.lee@mediatek.com>
11---
12 src/ap/acs.c | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15--- a/src/ap/acs.c
16+++ b/src/ap/acs.c
17@@ -256,7 +256,7 @@ struct bw_item {
18 static const struct bw_item bw_40[] = {
19 { 5180, 5200, 38 }, { 5220, 5240, 46 }, { 5260, 5280, 54 },
20 { 5300, 5320, 62 }, { 5500, 5520, 102 }, { 5540, 5560, 110 },
21- { 5580, 5600, 110 }, { 5620, 5640, 126}, { 5660, 5680, 134 },
22+ { 5580, 5600, 118 }, { 5620, 5640, 126 }, { 5660, 5680, 134 },
23 { 5700, 5720, 142 }, { 5745, 5765, 151 }, { 5785, 5805, 159 },
24 { 5825, 5845, 167 }, { 5865, 5885, 175 },
25 { 5955, 5975, 3 }, { 5995, 6015, 11 }, { 6035, 6055, 19 },