Преглед изворни кода

qcacmn: Modify tx-power in Regdomain FCC15 and FCC16

The max txpower allowed in reg domain FCC15 (24dBm) and FCC16 (30 dBm)
as per the regulatory update #32 xls is applicable for 320 mhz. For
160 MHz,the powers need to be reduced by 3dbm.

This was missed in the change-id
I1b1bdaceb4fa48973fb33fca17465a25d05ae040, and the power values
applicable for 320MHz were added.

Therefore, modify the max txpower allowed in regdomain FCC15 as 21 dBm
and the max txpower allowed in regdomain FCC16 as 27 dBm.

Change-Id: I5f5fa4ce1ba17deedfd367d7d07ad6c27fe91aa0
CRs-Fixed: 2763480
Hariharan Basuthkar пре 4 година
родитељ
комит
09a17690e8
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      umac/regulatory/core/src/reg_db.c

+ 2 - 2
umac/regulatory/core/src/reg_db.c

@@ -1334,8 +1334,8 @@ const struct regulatory_rule reg_rules_5g[] = {
 	[CHAN_5850_5925_1] = {5850, 5925, 20, 24, 0},
 	[CHAN_5850_5925_2] = {5850, 5925, 20, 30, 0},
 #ifdef CONFIG_BAND_6GHZ
-	[CHAN_5945_7125_1] = {5945, 7125, 160, 24, REGULATORY_CHAN_INDOOR_ONLY},
-	[CHAN_5945_7125_2] = {5945, 7125, 160, 30, REGULATORY_CHAN_INDOOR_ONLY},
+	[CHAN_5945_7125_1] = {5945, 7125, 160, 21, REGULATORY_CHAN_INDOOR_ONLY},
+	[CHAN_5945_7125_2] = {5945, 7125, 160, 27, REGULATORY_CHAN_INDOOR_ONLY},
 	[CHAN_5945_7125_3] = {5945, 7125, 160, 20, REGULATORY_CHAN_NO_IR},
 #endif
 };