qcacmn: Add peer type for MLO Bridge

Add peer type for MLO bridge peer. This is a special peer
created on 4-link MLO AP to allow association of some 2-link
MLO STAs.

Change-Id: Id2073ea82582ae67cae03b813d8f7bf44fde9aff
CRs-Fixed: 3412299
This commit is contained in:
Balaganapathy Palanisamy
2023-02-13 16:28:42 +05:30
committed by Madan Koyyalamudi
vanhempi 609cff4e50
commit 98a8a833ab
2 muutettua tiedostoa jossa 6 lisäystä ja 1 poistoa

Näytä tiedosto

@@ -631,6 +631,7 @@ enum wifi_traffic_ac {
* @WLAN_PEER_NDP: NDP Peer
* @WLAN_PEER_MLO_TEMP: MLO Peer Temp (host only node)
* @WLAN_PEER_RTT_PASN: Ranging PASN peer
* @WLAN_PEER_MLO_BRIDGE: MLO Bridge peer
*/
enum wlan_peer_type {
WLAN_PEER_SELF = 1,
@@ -645,6 +646,7 @@ enum wlan_peer_type {
WLAN_PEER_NDP = 10,
WLAN_PEER_MLO_TEMP = 11,
WLAN_PEER_RTT_PASN = 12,
WLAN_PEER_MLO_BRIDGE = 13,
};
/**