wiphy: track self-managed flag

Check if the SELF_MANAGED_REG flag is set and set into wiphy.
This commit is contained in:
James Prestwood 2022-08-03 14:36:35 -07:00 committed by Denis Kenzior
parent 907a2fd7b9
commit 471d34704f
1 changed files with 4 additions and 0 deletions

View File

@ -133,6 +133,7 @@ struct wiphy {
bool offchannel_tx_ok : 1;
bool blacklisted : 1;
bool registered : 1;
bool self_managed : 1;
};
static struct l_queue *wiphy_list = NULL;
@ -1647,6 +1648,9 @@ static void wiphy_parse_attributes(struct wiphy *wiphy,
case NL80211_ATTR_ROAM_SUPPORT:
wiphy->support_fw_roam = true;
break;
case NL80211_ATTR_WIPHY_SELF_MANAGED_REG:
wiphy->self_managed = true;
break;
}
}
}