Browse Source

qcacld-3.0: Remove transaction_id from tdls_send_mgmt_request

The transaction_id in struct tdls_send_mgmt_request is unused, so
remove it.

Change-Id: Id06d6883a34d8becbb0040464e0abaecfbfd3b92
CRs-Fixed: 2404153
Jeff Johnson 6 năm trước cách đây
mục cha
commit
7318367ba7

+ 0 - 4
components/tdls/core/src/wlan_tdls_mgmt.c

@@ -267,10 +267,6 @@ static QDF_STATUS tdls_activate_send_mgmt_request(
 		   action_req->tdls_mgmt.peer_capability);
 
 	tdls_mgmt_req->session_id = action_req->session_id;
-	/* Using dialog as transactionId. This can be used to
-	 * match response with request
-	 */
-	tdls_mgmt_req->transaction_id = action_req->tdls_mgmt.dialog;
 	tdls_mgmt_req->req_type = action_req->tdls_mgmt.frame_type;
 	tdls_mgmt_req->dialog = action_req->tdls_mgmt.dialog;
 	tdls_mgmt_req->status_code = action_req->tdls_mgmt.status_code;

+ 0 - 2
components/tdls/dispatcher/inc/wlan_tdls_public_structs.h

@@ -1218,7 +1218,6 @@ struct tdls_del_sta_rsp {
  * @message_type: type of pe message
  * @length: length of the frame.
  * @session_id: session id
- * @transaction_id: transaction ID for cmd
  * @req_type: type of action frame
  * @dialog: dialog token used in the frame.
  * @status_code: status to be incuded in the frame.
@@ -1232,7 +1231,6 @@ struct tdls_send_mgmt_request {
 	uint16_t message_type;
 	uint16_t length;
 	uint8_t session_id;
-	uint16_t transaction_id;
 	uint8_t req_type;
 	uint8_t dialog;
 	uint16_t status_code;