|
@@ -2945,6 +2945,8 @@ QDF_STATUS wma_open(struct wlan_objmgr_psoc *psoc,
|
|
|
"wlan_roam_ho_wl");
|
|
|
qdf_wake_lock_create(&wma_handle->roam_preauth_wl,
|
|
|
"wlan_roam_preauth_wl");
|
|
|
+ qdf_wake_lock_create(&wma_handle->probe_req_wps_wl,
|
|
|
+ "wlan_probe_req_wps_wl");
|
|
|
}
|
|
|
|
|
|
qdf_status = wlan_objmgr_psoc_try_get_ref(psoc, WLAN_LEGACY_WMA_ID);
|
|
@@ -3454,6 +3456,7 @@ err_get_psoc_ref:
|
|
|
qdf_wake_lock_destroy(&wma_handle->wow_auto_shutdown_wl);
|
|
|
qdf_wake_lock_destroy(&wma_handle->roam_ho_wl);
|
|
|
qdf_wake_lock_destroy(&wma_handle->roam_preauth_wl);
|
|
|
+ qdf_wake_lock_destroy(&wma_handle->probe_req_wps_wl);
|
|
|
}
|
|
|
err_free_wma_handle:
|
|
|
cds_free_context(QDF_MODULE_ID_WMA, wma_handle);
|
|
@@ -4429,6 +4432,7 @@ QDF_STATUS wma_close(void)
|
|
|
qdf_wake_lock_destroy(&wma_handle->wow_auto_shutdown_wl);
|
|
|
qdf_wake_lock_destroy(&wma_handle->roam_ho_wl);
|
|
|
qdf_wake_lock_destroy(&wma_handle->roam_preauth_wl);
|
|
|
+ qdf_wake_lock_destroy(&wma_handle->probe_req_wps_wl);
|
|
|
}
|
|
|
|
|
|
/* unregister Firmware debug log */
|