mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-18 01:59:31 +01:00
wiphy: Handle OWE AKM for SECURITY_TYPE_NONE
This commit is contained in:
parent
ef544dfc6e
commit
d19b1bb85e
@ -140,6 +140,9 @@ enum ie_rsn_akm_suite wiphy_select_akm(struct wiphy *wiphy,
|
||||
|
||||
if (info.akm_suites & IE_RSN_AKM_SUITE_PSK)
|
||||
return IE_RSN_AKM_SUITE_PSK;
|
||||
} else if (security == SECURITY_NONE) {
|
||||
if (info.akm_suites & IE_RSN_AKM_SUITE_OWE)
|
||||
return IE_RSN_AKM_SUITE_OWE;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user