From 4ab1c4c0a370e334433715ec5397a94d563715b8 Mon Sep 17 00:00:00 2001 From: Arif Hussain Date: Thu, 30 Jun 2016 15:57:49 -0700 Subject: [PATCH] qcacmn: SAP DFS: Fix dfs_phyerr_filter_offload Correct the logic based on phyerr filter offload INI value. Change-Id: Ie4722eba7d7476fc7c445e9e9a026827231552eb CRs-Fixed: 1036629 --- wmi_unified_tlv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmi_unified_tlv.c b/wmi_unified_tlv.c index 775123100d..52ad166539 100644 --- a/wmi_unified_tlv.c +++ b/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);