mirror of https://gitee.com/openkylin/linux.git
staging: rtl8192e: Rename r8192_wx_set_scan_type
Use naming schema found in other rtlwifi devices. Rename r8192_wx_set_scan_type to _rtl92e_wx_set_scan_type. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fe13d0105d
commit
11f24fd159
|
@ -774,9 +774,9 @@ static int r8192_wx_set_enc(struct net_device *dev,
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int r8192_wx_set_scan_type(struct net_device *dev,
|
||||
struct iw_request_info *aa,
|
||||
union iwreq_data *wrqu, char *p)
|
||||
static int _rtl92e_wx_set_scan_type(struct net_device *dev,
|
||||
struct iw_request_info *aa,
|
||||
union iwreq_data *wrqu, char *p)
|
||||
{
|
||||
struct r8192_priv *priv = rtllib_priv(dev);
|
||||
int *parms = (int *)p;
|
||||
|
@ -1195,7 +1195,7 @@ static const struct iw_priv_args r8192_private_args[] = {
|
|||
|
||||
static iw_handler r8192_private_handler[] = {
|
||||
(iw_handler)_rtl92e_wx_set_debug, /*SIOCIWSECONDPRIV*/
|
||||
(iw_handler)r8192_wx_set_scan_type,
|
||||
(iw_handler)_rtl92e_wx_set_scan_type,
|
||||
(iw_handler)_rtl92e_wx_set_rawtx,
|
||||
(iw_handler)_rtl92e_wx_force_reset,
|
||||
(iw_handler)NULL,
|
||||
|
|
Loading…
Reference in New Issue