|
@@ -1911,12 +1911,16 @@ static void sap_sort_chl_weight_ht80(tSapChSelSpectInfo *pSpectInfoParams)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /*
|
|
|
+ * Assign max weight(SAP_ACS_WEIGHT_MAX * 4) to 2.4 Ghz channels
|
|
|
+ * and channel 165 as they cannot be part of a 80Mhz channel bonding.
|
|
|
+ */
|
|
|
pSpectInfo = pSpectInfoParams->pSpectCh;
|
|
|
for (j = 0; j < pSpectInfoParams->numSpectChans; j++) {
|
|
|
- if (CHANNEL_165 == pSpectInfo[j].chNum) {
|
|
|
+ if ((pSpectInfo[j].chNum >= WLAN_REG_CH_NUM(CHAN_ENUM_1) &&
|
|
|
+ pSpectInfo[j].chNum <= WLAN_REG_CH_NUM(CHAN_ENUM_14)) ||
|
|
|
+ (CHANNEL_165 == pSpectInfo[j].chNum))
|
|
|
pSpectInfo[j].weight = SAP_ACS_WEIGHT_MAX * 4;
|
|
|
- break;
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
sap_sort_chl_weight(pSpectInfoParams);
|
|
@@ -2051,12 +2055,18 @@ static void sap_sort_chl_weight_vht160(tSapChSelSpectInfo *pSpectInfoParams)
|
|
|
pSpectInfo[j + minIdx].weight = acs_vht160_channels[i].weight;
|
|
|
}
|
|
|
|
|
|
+ /*
|
|
|
+ * Assign max weight(SAP_ACS_WEIGHT_MAX * 8) to 2.4 Ghz channels
|
|
|
+ * and channel 132-165 as they cannot be part of a 160Mhz channel
|
|
|
+ * bonding.
|
|
|
+ */
|
|
|
pSpectInfo = pSpectInfoParams->pSpectCh;
|
|
|
for (j = 0; j < pSpectInfoParams->numSpectChans; j++) {
|
|
|
- if (CHANNEL_165 == pSpectInfo[j].chNum) {
|
|
|
+ if ((pSpectInfo[j].chNum >= WLAN_REG_CH_NUM(CHAN_ENUM_1) &&
|
|
|
+ pSpectInfo[j].chNum <= WLAN_REG_CH_NUM(CHAN_ENUM_14)) ||
|
|
|
+ (pSpectInfo[j].chNum >= WLAN_REG_CH_NUM(CHAN_ENUM_132) &&
|
|
|
+ pSpectInfo[j].chNum <= WLAN_REG_CH_NUM(CHAN_ENUM_165)))
|
|
|
pSpectInfo[j].weight = SAP_ACS_WEIGHT_MAX * 8;
|
|
|
- break;
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
sap_sort_chl_weight(pSpectInfoParams);
|