瀏覽代碼

qcacmn: Fix setcountry code and getcountry code failure

offload_enabled flag is set to true for full-offload.
Currently full-offload is using HOST regdb, therefore set
country code and get country is failing.

Change-Id: Idd3a7300bcc1ec1934e7258c87d5bd989ecaf5bf
CRs-Fixed: 2047212
Baila, Shashikala Prabhu 8 年之前
父節點
當前提交
4881d6d543
共有 1 個文件被更改,包括 0 次插入6 次删除
  1. 0 6
      umac/regulatory/core/src/reg_services.c

+ 0 - 6
umac/regulatory/core/src/reg_services.c

@@ -2638,9 +2638,6 @@ QDF_STATUS reg_program_chan_list(struct wlan_objmgr_psoc *psoc,
 		return QDF_STATUS_E_FAILURE;
 	}
 
-	if (soc_reg->offload_enabled)
-		return QDF_STATUS_E_FAILURE;
-
 	reg_info = (struct cur_regulatory_info *)qdf_mem_malloc
 		(sizeof(struct cur_regulatory_info));
 	if (reg_info == NULL) {
@@ -2705,9 +2702,6 @@ QDF_STATUS reg_get_current_cc(struct wlan_objmgr_psoc *psoc,
 		return QDF_STATUS_E_FAILURE;
 	}
 
-	if (soc_reg->offload_enabled)
-		return QDF_STATUS_E_FAILURE;
-
 	if (rd->flags == CC_IS_SET) {
 		rd->cc.country_code = soc_reg->ctry_code;
 	} else if (rd->flags == ALPHA_IS_SET) {