Browse Source

qcacmn: SAP DFS: Fix dfs_phyerr_filter_offload

Correct the logic based on phyerr filter offload INI value.

Change-Id: Ie4722eba7d7476fc7c445e9e9a026827231552eb
CRs-Fixed: 1036629
Arif Hussain 8 years ago
parent
commit
0b6da577e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      wmi/src/wmi_unified_tlv.c

+ 1 - 1
wmi/src/wmi_unified_tlv.c

@@ -6828,7 +6828,7 @@ send_dfs_phyerr_filter_offload_en_cmd_tlv(wmi_unified_t wmi_handle,
 	QDF_STATUS ret;
 
 
-	if (dfs_phyerr_filter_offload) {
+	if (false == dfs_phyerr_filter_offload) {
 		WMI_LOGD("%s:Phyerror Filtering offload is Disabled in ini",
 			 __func__);
 		len = sizeof(*disable_phyerr_offload_cmd);