Răsfoiți Sursa

qcacld-3.0: Fix the band setting for auto phy mode config

Enable 6G band for auto phy mode config if 6G is supported.

Change-Id: I3368b7e81721db32aee64f9b24e00fb18c84b716
CRs-Fixed: 2793729
Kiran Kumar Lokere 4 ani în urmă
părinte
comite
565ba93017
1 a modificat fișierele cu 6 adăugiri și 0 ștergeri
  1. 6 0
      core/hdd/src/wlan_hdd_cfg.c

+ 6 - 0
core/hdd/src/wlan_hdd_cfg.c

@@ -1333,6 +1333,12 @@ int hdd_vendor_mode_to_band(enum qca_wlan_vendor_phy_mode vendor_phy_mode,
 {
 	switch (vendor_phy_mode) {
 	case QCA_WLAN_VENDOR_PHY_MODE_AUTO:
+		if (is_6ghz_supported)
+			*supported_band = REG_BAND_MASK_ALL;
+		else
+			*supported_band =
+				BIT(REG_BAND_2G) | BIT(REG_BAND_5G);
+		break;
 	case QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT20:
 	case QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT40:
 	case QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT40PLUS: