qcacld-3.0: Make WMI_ROAM_PMKID_REQUEST_EVENTID event as wakable

Add support to make event WMI_ROAM_PMKID_REQUEST_EVENTID as
wakable in FIPS case.
In FIPS Enabled case, for roaming Firmware sends PMKID request
to host as firmware is not supposed to do crypto functionality
with FIPS enabled.

Change-Id: I09b6b68f77ba75f9e5519ff18017c95d16771f52
CRs-Fixed: 2513790
This commit is contained in:
Srikanth Marepalli
2019-12-20 16:11:02 +05:30
committed by nshrivas
parent 4eaa5d66ba
commit 72213318bd
3 changed files with 31 additions and 2 deletions

View File

@@ -212,6 +212,14 @@ static inline void
wma_register_pmkid_req_event_handler(tp_wma_handle wma_handle)
{
}
static inline int
wma_roam_pmkid_request_event_handler(void *handle,
uint8_t *event,
uint32_t len)
{
return 0;
}
#endif /* WLAN_FEATURE_FIPS */
/**
@@ -283,6 +291,14 @@ wma_roam_stats_event_handler(WMA_HANDLE handle, uint8_t *event,
{
return 0;
}
static inline int
wma_roam_pmkid_request_event_handler(void *handle,
uint8_t *event,
uint32_t len)
{
return 0;
}
#endif
/**