qcacmn: Add peer mac address in struct ol_txrx_desc_type

Local peer_id is being cleaned up across DP, HDD and PS/WMA.
So, any references to local peer_id/sta_id will be replaced
by peer mac address and all interactions between the layers
will be based on peer mac address.

Change-Id: I3a141d0a1e549fcbb587373f1e0d57dfd031911f
CRs-Fixed: 2503144
This commit is contained in:
Rakshith Suresh Patkar
2019-07-26 10:46:52 +05:30
committed by nshrivas
부모 d976954cf0
커밋 b3bc8abbd6

파일 보기

@@ -234,11 +234,13 @@ enum peer_debug_id_type {
* @sta_id: sta id
* @is_qos_enabled: is station qos enabled
* @is_wapi_supported: is station wapi supported
* @peer_addr: peer mac address
*/
struct ol_txrx_desc_type {
uint8_t sta_id;
uint8_t is_qos_enabled;
uint8_t is_wapi_supported;
struct qdf_mac_addr peer_addr;
};
/**