qcacld-3.0: Remove transaction_id from tdls_send_mgmt_rsp

The transaction_id in struct tdls_send_mgmt_rsp is unused, so remove
it. Also remove the comment that implies this struct has the same
structure as tSirSmeRsp since it does not.

Change-Id: I79cf0b2051b232635f37808155ddbd6438a40658
CRs-Fixed: 2404152
This commit is contained in:
Jeff Johnson
2019-02-22 11:35:12 -08:00
committed by nshrivas
parent 9b98a0deb4
commit eeeb3e121b

View File

@@ -1152,15 +1152,12 @@ enum legacy_result_code {
/** /**
* struct tdls_send_mgmt_rsp - TDLS Response struct PE --> TDLS module * struct tdls_send_mgmt_rsp - TDLS Response struct PE --> TDLS module
* same as struct tSirSmeRsp
* @session_id: session id * @session_id: session id
* @transaction_id: transaction id
* @status_code: status code as tSirResultCodes * @status_code: status code as tSirResultCodes
* @psoc: soc object * @psoc: soc object
*/ */
struct tdls_send_mgmt_rsp { struct tdls_send_mgmt_rsp {
uint8_t session_id; uint8_t session_id;
uint16_t transaction_id;
enum legacy_result_code status_code; enum legacy_result_code status_code;
struct wlan_objmgr_psoc *psoc; struct wlan_objmgr_psoc *psoc;
}; };