summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <jjohnson@codeaurora.org>2016-10-14 09:54:48 -0700
committerqcabuildsw <qcabuildsw@localhost>2016-11-01 18:42:26 -0700
commitdb4085fd89797a371f76be9e2c53093d7662c467 (patch)
treee6cd8c34e83b8d3193e9d2644e1e613b2b385c1c
parente2c47b76c1695d28e479de01debe3bac393752d6 (diff)
qcacld-3.0: Remove ol_txrx_ipa_uc_fw_op_event_handler()
Recently the following change removed the only reference to function ol_txrx_ipa_uc_fw_op_event_handler(): Change-Id Iae45c059006592293ea61d04be89b1477daae514 "qcacld-3.0: Fix HTT_T2H_MSG_TYPE_WDI_IPA_OP_RESPONSE handler" Since the function is now obsolete, remove it. Change-Id: I10d8ee7ef9a97d1eb5283e08c786826005fbd335 CRs-Fixed: 1075151
-rw-r--r--core/dp/txrx/ol_txrx.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/core/dp/txrx/ol_txrx.c b/core/dp/txrx/ol_txrx.c
index 19f4f2958d89..8427741c0a24 100644
--- a/core/dp/txrx/ol_txrx.c
+++ b/core/dp/txrx/ol_txrx.c
@@ -4119,36 +4119,6 @@ ol_txrx_ipa_uc_set_active(ol_txrx_pdev_handle pdev, bool uc_active, bool is_tx)
}
/**
- * ol_txrx_ipa_uc_fw_op_event_handler() - opcode event handler
- * @context: pdev context
- * @rxpkt: received packet
- * @staid: peer id
- *
- * Return: None
- */
-void ol_txrx_ipa_uc_fw_op_event_handler(void *context,
- void *rxpkt,
- uint16_t staid)
-{
- ol_txrx_pdev_handle pdev = (ol_txrx_pdev_handle)context;
-
- if (qdf_unlikely(!pdev)) {
- QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
- "%s: Invalid context", __func__);
- qdf_mem_free(rxpkt);
- return;
- }
-
- if (pdev->ipa_uc_op_cb) {
- pdev->ipa_uc_op_cb(rxpkt, pdev->osif_dev);
- } else {
- QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
- "%s: ipa_uc_op_cb NULL", __func__);
- qdf_mem_free(rxpkt);
- }
-}
-
-/**
* ol_txrx_ipa_uc_op_response() - Handle OP command response from firmware
* @pdev: handle to the HTT instance
* @op_msg: op response message from firmware