qcacld-3.0: Remove transactionId from tSirDeltsRsp

The transactionId in struct tSirDeltsRsp is unused, so remove it.

Change-Id: I83135573cdf53d61a8fcd4e2cd803eebca060e6d
CRs-Fixed: 2403174
diff --git a/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c b/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c
index 8b0fc99..579b27d 100644
--- a/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c
+++ b/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c
@@ -1287,10 +1287,9 @@
 	return;
 }
 
-void
-lim_send_sme_delts_rsp(struct mac_context *mac, tpSirDeltsReq delts, uint32_t status,
-		       struct pe_session *pe_session, uint8_t smesessionId,
-		       uint16_t smetransactionId)
+void lim_send_sme_delts_rsp(struct mac_context *mac, tpSirDeltsReq delts,
+			    uint32_t status, struct pe_session *pe_session,
+			    uint8_t smesessionId)
 {
 	tpSirDeltsRsp rsp;
 	struct scheduler_msg mmhMsg = {0};
@@ -1316,10 +1315,7 @@
 
 	rsp->messageType = eWNI_SME_DELTS_RSP;
 	rsp->rc = status;
-
-	/* Update SME session Id and transcation Id */
 	rsp->sessionId = smesessionId;
-	rsp->transactionId = smetransactionId;
 
 	mmhMsg.type = eWNI_SME_DELTS_RSP;
 	mmhMsg.bodyptr = rsp;
@@ -1357,11 +1353,7 @@
 	rsp->rc = QDF_STATUS_SUCCESS;
 	rsp->aid = aid;
 	qdf_mem_copy((uint8_t *) &rsp->rsp, (uint8_t *) delts, sizeof(*delts));
-
-	/* Update SME  session Id and SME transaction Id */
-
 	rsp->sessionId = pe_session->smeSessionId;
-	rsp->transactionId = pe_session->transactionId;
 
 	mmhMsg.type = eWNI_SME_DELTS_IND;
 	mmhMsg.bodyptr = rsp;