Prechádzať zdrojové kódy

qcacld-3.0: Handle multiple oem data events for single command

FW can send multiple events for a single oem data command
based on the size of the data to be send and the available
buffer size.
Currenlty sme callback in the oem data event handler
wma_oem_event_handler is set to null after it process the
event because of which next events for the same command
are not processed.

To address this issue do not make the sme callback as null
in the wma oem event handler.

CRs-Fixed: 2714680
Change-Id: Ia435a5bee7ed4d2e16313698052033f8b45a5873
Ashish Kumar Dhanotiya 4 rokov pred
rodič
commit
a747d4cdb8
1 zmenil súbory, kde vykonal 0 pridanie a 1 odobranie
  1. 0 1
      core/wma/src/wma_utils.c

+ 0 - 1
core/wma/src/wma_utils.c

@@ -4946,7 +4946,6 @@ int wma_oem_event_handler(void *wma_ctx, uint8_t *event_buff, uint32_t len)
 	oem_event_data.data = param_buf->data;
 	pmac->sme.oem_data_event_handler_cb(&oem_event_data,
 					    pmac->sme.oem_data_vdev_id);
-	pmac->sme.oem_data_event_handler_cb = NULL;
 
 	return QDF_STATUS_SUCCESS;
 }