diff --git a/tdls/core/src/wlan_tdls_cmds_process.h b/tdls/core/src/wlan_tdls_cmds_process.h index b6d7387988..c51b3b0a50 100644 --- a/tdls/core/src/wlan_tdls_cmds_process.h +++ b/tdls/core/src/wlan_tdls_cmds_process.h @@ -29,25 +29,6 @@ ((TDLS_SETUP_REQUEST <= action) && \ (TDLS_SETUP_CONFIRM >= action)) -/** - * struct tdls_del_sta_req - TDLS Request struct TDLS module --> PE - * same as sSirTdlsDelStaReq - * @message_type: message type eWNI_SME_TDLS_DEL_STA_REQ - * @length: message length - * @session_id: session id - * @transaction_id: transaction id for cmd - * @bssid: bssid - * @peermac: MAC address of the TDLS peer - */ -struct tdls_del_sta_req { - uint16_t message_type; - uint16_t length; - uint8_t session_id; - uint16_t transaction_id; - struct qdf_mac_addr bssid; - struct qdf_mac_addr peermac; -}; - /** * tdls_process_add_peer() - add TDLS peer * @req: TDLS add peer request diff --git a/tdls/dispatcher/inc/wlan_tdls_public_structs.h b/tdls/dispatcher/inc/wlan_tdls_public_structs.h index 2f17b2c7ce..26a5dfb133 100644 --- a/tdls/dispatcher/inc/wlan_tdls_public_structs.h +++ b/tdls/dispatcher/inc/wlan_tdls_public_structs.h @@ -1288,4 +1288,22 @@ struct tdls_add_sta_req { uint8_t max_sp; }; +/** + * struct tdls_del_sta_req - TDLS Request struct TDLS module --> PE + * @message_type: message type eWNI_SME_TDLS_DEL_STA_REQ + * @length: message length + * @session_id: session id + * @transaction_id: transaction id for cmd + * @bssid: bssid + * @peermac: MAC address of the TDLS peer + */ +struct tdls_del_sta_req { + uint16_t message_type; + uint16_t length; + uint8_t session_id; + uint16_t transaction_id; + struct qdf_mac_addr bssid; + struct qdf_mac_addr peermac; +}; + #endif