staging: rtl8192e: Rename r8192_wx_set_auth

Use naming schema found in other rtlwifi devices.
Rename r8192_wx_set_auth to _rtl92e_wx_set_auth.

Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Mateusz Kulikowski 2015-09-20 10:18:58 +02:00 committed by Greg Kroah-Hartman
parent 7cd40ae4fe
commit 99f1859f8d

View File

@ -980,9 +980,10 @@ end_hw_sec:
return ret;
}
static int r8192_wx_set_auth(struct net_device *dev,
struct iw_request_info *info,
union iwreq_data *data, char *extra)
static int _rtl92e_wx_set_auth(struct net_device *dev,
struct iw_request_info *info,
union iwreq_data *data, char *extra)
{
int ret = 0;
@ -1149,7 +1150,7 @@ static iw_handler r8192_wx_handlers[] = {
[IW_IOCTL(SIOCSIWGENIE)] = r8192_wx_set_gen_ie,
[IW_IOCTL(SIOCGIWGENIE)] = _rtl92e_wx_get_gen_ie,
[IW_IOCTL(SIOCSIWMLME)] = r8192_wx_set_mlme,
[IW_IOCTL(SIOCSIWAUTH)] = r8192_wx_set_auth,
[IW_IOCTL(SIOCSIWAUTH)] = _rtl92e_wx_set_auth,
[IW_IOCTL(SIOCSIWENCODEEXT)] = r8192_wx_set_enc_ext,
};