mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-21 20:12:37 +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)
|
if (info.akm_suites & IE_RSN_AKM_SUITE_PSK)
|
||||||
return 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;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user