Browse Source

qcacld-3.0: Remove transactionId from deauth_rsp

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

Change-Id: I22ce8a357966675eec13c2fb9be53b2a22db6369
CRs-Fixed: 2403169
Jeff Johnson 6 years ago
parent
commit
b9e2c22adb

+ 0 - 1
core/mac/inc/sir_api.h

@@ -1298,7 +1298,6 @@ struct deauth_rsp {
 	uint16_t messageType;   /* eWNI_SME_DEAUTH_RSP */
 	uint16_t length;
 	uint8_t sessionId;      /* Session ID */
-	uint16_t transactionId; /* Transaction ID for cmd */
 	tSirResultCodes statusCode;
 	struct qdf_mac_addr peer_macaddr;
 };

+ 0 - 1
core/mac/src/pe/lim/lim_process_mlm_req_messages.c

@@ -1642,7 +1642,6 @@ lim_process_mlm_deauth_req_ntf(struct mac_context *mac_ctx,
 						eSIR_SME_DEAUTH_STATUS;
 				sme_deauth_rsp->sessionId =
 						mlm_deauth_req->sessionId;
-				sme_deauth_rsp->transactionId = 0;
 
 				qdf_mem_copy(sme_deauth_rsp->peer_macaddr.bytes,
 					     mlm_deauth_req->peer_macaddr.bytes,

+ 0 - 1
core/mac/src/pe/lim/lim_send_sme_rsp_messages.c

@@ -1119,7 +1119,6 @@ lim_send_sme_deauth_ntf(struct mac_context *mac, tSirMacAddr peerMacAddr,
 		pSirSmeDeauthRsp->length = sizeof(*pSirSmeDeauthRsp);
 		pSirSmeDeauthRsp->statusCode = reasonCode;
 		pSirSmeDeauthRsp->sessionId = smesessionId;
-		pSirSmeDeauthRsp->transactionId = smetransactionId;
 
 		pBuf = (uint8_t *) pSirSmeDeauthRsp->peer_macaddr.bytes;
 		qdf_mem_copy(pBuf, peerMacAddr, sizeof(tSirMacAddr));