Sfoglia il codice sorgente

qcacld-3.0: Move WMI_PDEV_FIPS_EVENTID handling to workqueue

Currently the WMI_PDEV_FIPS_EVENTID handler is registered to use
WMA_RX_SERIALIZER_CTX. However the FIPS feature does not use pMac and
hence does not require serialization through the MC Thread. So change
the registration to use WMA_RX_WORK_CTX.

Change-Id: Iec0b87331008bbe393efa1cbc2071af75012022e
CRs-Fixed: 2068572
Jeff Johnson 7 anni fa
parent
commit
ab01d2b9af
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      core/wma/src/wma_fips_api.c

+ 1 - 1
core/wma/src/wma_fips_api.c

@@ -108,5 +108,5 @@ QDF_STATUS wma_fips_register_event_handlers(WMA_HANDLE handle)
 	return wmi_unified_register_event_handler(wma_handle->wmi_handle,
 						  WMI_PDEV_FIPS_EVENTID,
 						  wma_fips_event_handler,
-						  WMA_RX_SERIALIZER_CTX);
+						  WMA_RX_WORK_CTX);
 }