Browse Source

qcacld-3.0: Enable PNO feature in FW feature config

Enable PNO feature in FW feature config such that WiFi
kernel space driver can return proper PNO feature capability
to user space.

Change-Id: I1360050aab0224b109ee9b3912d1aa428f5a5ed7
CRs-Fixed: 2249491
Rajeev Kumar 6 years ago
parent
commit
617aadd2a2
1 changed files with 3 additions and 1 deletions
  1. 3 1
      core/wma/src/wma_main.c

+ 3 - 1
core/wma/src/wma_main.c

@@ -4822,8 +4822,10 @@ static inline void wma_update_target_services(struct wmi_unified *wmi_handle,
 					       wmi_service_early_rx);
 #ifdef FEATURE_WLAN_SCAN_PNO
 	/* PNO offload */
-	if (wmi_service_enabled(wmi_handle, wmi_service_nlo))
+	if (wmi_service_enabled(wmi_handle, wmi_service_nlo)) {
 		cfg->pno_offload = true;
+		g_fw_wlan_feat_caps |= (1 << PNO);
+	}
 #endif /* FEATURE_WLAN_SCAN_PNO */
 
 #ifdef FEATURE_WLAN_EXTSCAN