wiphy: Add support for BIP in wiphy_select_cipher

This commit is contained in:
Denis Kenzior 2016-10-24 21:29:37 -05:00
parent 2899315828
commit bdd676a23a
1 changed files with 3 additions and 0 deletions

View File

@ -74,6 +74,9 @@ enum ie_rsn_cipher_suite wiphy_select_cipher(struct wiphy *wiphy, uint16_t mask)
if (mask & IE_RSN_CIPHER_SUITE_TKIP)
return IE_RSN_CIPHER_SUITE_TKIP;
if (mask & IE_RSN_CIPHER_SUITE_BIP)
return IE_RSN_CIPHER_SUITE_BIP;
return 0;
}
static void wiphy_free(void *data)