diff --git a/components/tdls/core/src/wlan_tdls_mgmt.c b/components/tdls/core/src/wlan_tdls_mgmt.c index 70f552e504..a19984defd 100644 --- a/components/tdls/core/src/wlan_tdls_mgmt.c +++ b/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; diff --git a/components/tdls/dispatcher/inc/wlan_tdls_public_structs.h b/components/tdls/dispatcher/inc/wlan_tdls_public_structs.h index d8a3814662..c2588c8600 100644 --- a/components/tdls/dispatcher/inc/wlan_tdls_public_structs.h +++ b/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;