Prechádzať zdrojové kódy

qcacld-3.0: Disable all dual mac features when DBS is disabled from INI

Current driver doesn't send WMI command to notify firmware to disable
all dual mac features when DBS is disabled from INI.

Disable dual mac features including all scan policies when DBS is
disabled from INI.

Change-Id: Id452c1de795dbeb7dc897a71e1578731d9dad2f9
CRs-Fixed: 1069650
Krunal Soni 8 rokov pred
rodič
commit
edb38f950f
1 zmenil súbory, kde vykonal 0 pridanie a 11 odobranie
  1. 0 11
      core/hdd/src/wlan_hdd_main.c

+ 0 - 11
core/hdd/src/wlan_hdd_main.c

@@ -6042,9 +6042,6 @@ static QDF_STATUS wlan_hdd_disable_all_dual_mac_features(hdd_context_t *hdd_ctx)
 		return QDF_STATUS_E_FAILURE;
 	}
 
-	if (hdd_ctx->config->dual_mac_feature_disable)
-		return QDF_STATUS_SUCCESS;
-
 	cfg.scan_config = 0;
 	cfg.fw_mode_config = 0;
 	cfg.set_dual_mac_cb = cds_soc_set_dual_mac_cfg_cb;
@@ -7331,14 +7328,6 @@ static int hdd_features_init(hdd_context_t *hdd_ctx, hdd_adapter_t *adapter)
 
 	hdd_tsf_init(hdd_ctx);
 
-	if (hdd_ctx->config->dual_mac_feature_disable) {
-		status = wlan_hdd_disable_all_dual_mac_features(hdd_ctx);
-		if (status != QDF_STATUS_SUCCESS) {
-			hdd_err("Failed to disable dual mac features");
-			goto deregister_frames;
-		}
-	}
-
 	ret = hdd_register_cb(hdd_ctx);
 	if (ret) {
 		hdd_err("Failed to register HDD callbacks!");