qcacmn: change parameter name 'is_assoc_link' in cdp_peer_setup_info
Currently is_assoc_link flag in cdp_peer_setup_info just means first link peer during MLO connection, but usually assoc_link is the link which initialize MLO association and it will be the primary_link. this introduce confusion with another flag is_primary_link. Change it to 'is_first_link' in cdp_peer_setup_info Change-Id: I8d14da73e6a3bbc39a4a527d6c0aa5667255e995 CRs-Fixed: 3090270
此提交包含在:
@@ -411,14 +411,13 @@ enum cdp_peer_type {
|
||||
/**
|
||||
* struct cdp_peer_setup_info: MLO connection info for cdp_peer_setup()
|
||||
* @mld_peer_mac: mld peer mac address pointer
|
||||
* @is_assoc_link: set true for first MLO link peer association
|
||||
* @is_primary_link: for MCC, the first link will always be primary link,
|
||||
* for WIN, other link might be primary link.
|
||||
* @is_first_link: set true for first MLO link peer
|
||||
* @is_primary_link: set true for MLO primary link peer
|
||||
* @primary_umac_id: primary umac_id
|
||||
*/
|
||||
struct cdp_peer_setup_info {
|
||||
uint8_t *mld_peer_mac;
|
||||
uint8_t is_assoc_link:1,
|
||||
uint8_t is_first_link:1,
|
||||
is_primary_link:1;
|
||||
uint8_t primary_umac_id;
|
||||
};
|
||||
|
新增問題並參考
封鎖使用者