mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 05:56:54 +07:00
[PATCH] wireless/ipw2200: support WE-18 WPA enc_capa
This patch allows ipw2100 driver to advertise the WPA-related encryption options that it does really support. It's necessary to work correctly with NetworkManager and other programs that actually check driver & card capabilities. Signed-off-by: Dan Williams <dcbw@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
4be757dd4c
commit
f1b50863aa
@ -8392,7 +8392,7 @@ static int ipw_wx_get_range(struct net_device *dev,
|
|||||||
|
|
||||||
/* Set the Wireless Extension versions */
|
/* Set the Wireless Extension versions */
|
||||||
range->we_version_compiled = WIRELESS_EXT;
|
range->we_version_compiled = WIRELESS_EXT;
|
||||||
range->we_version_source = 16;
|
range->we_version_source = 18;
|
||||||
|
|
||||||
i = 0;
|
i = 0;
|
||||||
if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
|
if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
|
||||||
@ -8424,6 +8424,9 @@ static int ipw_wx_get_range(struct net_device *dev,
|
|||||||
IW_EVENT_CAPA_MASK(SIOCGIWAP));
|
IW_EVENT_CAPA_MASK(SIOCGIWAP));
|
||||||
range->event_capa[1] = IW_EVENT_CAPA_K_1;
|
range->event_capa[1] = IW_EVENT_CAPA_K_1;
|
||||||
|
|
||||||
|
range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
|
||||||
|
IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
|
||||||
|
|
||||||
IPW_DEBUG_WX("GET Range\n");
|
IPW_DEBUG_WX("GET Range\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user