3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-11-17 17:39:28 +01:00

wiphy: call eapol_init and eapol_exit

This commit is contained in:
Denis Kenzior 2015-03-20 12:30:24 -05:00
parent 4c351196a9
commit 2598a1efed

View File

@ -1860,6 +1860,8 @@ bool wiphy_init(void)
l_genl_family_set_watches(nl80211, nl80211_appeared, nl80211_vanished, l_genl_family_set_watches(nl80211, nl80211_appeared, nl80211_vanished,
NULL, NULL); NULL, NULL);
eapol_init();
return true; return true;
failed: failed:
@ -1871,6 +1873,8 @@ failed:
bool wiphy_exit(void) bool wiphy_exit(void)
{ {
eapol_exit();
if (!genl) if (!genl)
return false; return false;