aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8192e/rtl8192e/rtl_core.c
diff options
context:
space:
mode:
authorMateusz Kulikowski <mateusz.kulikowski@gmail.com>2015-09-20 10:13:30 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-09-29 03:33:46 +0200
commitc5d0d6f5dba847478aeaaa059b13f9a5877b41da (patch)
treee52e329ab03ad9a8581df3dbb5f82e7a9f201834 /drivers/staging/rtl8192e/rtl8192e/rtl_core.c
parentstaging: rtl8192e: Rename rtl8192_qos_association_resp (diff)
downloadlinux-dev-c5d0d6f5dba847478aeaaa059b13f9a5877b41da.tar.xz
linux-dev-c5d0d6f5dba847478aeaaa059b13f9a5877b41da.zip
staging: rtl8192e: Rename rtl8192_qos_handle_probe_response
Use naming schema found in other rtlwifi devices. Rename rtl8192_qos_handle_probe_response to _rtl92e_qos_handle_probe_response. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192e/rtl8192e/rtl_core.c')
-rw-r--r--drivers/staging/rtl8192e/rtl8192e/rtl_core.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c
index 369344a8c2c2..2aadb6284eae 100644
--- a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c
+++ b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c
@@ -416,9 +416,9 @@ success:
mutex_unlock(&priv->mutex);
}
-static int rtl8192_qos_handle_probe_response(struct r8192_priv *priv,
- int active_network,
- struct rtllib_network *network)
+static int _rtl92e_qos_handle_probe_response(struct r8192_priv *priv,
+ int active_network,
+ struct rtllib_network *network)
{
int ret = 0;
u32 size = sizeof(struct rtllib_qos_parameters);
@@ -467,7 +467,7 @@ static int rtl8192_handle_beacon(struct net_device *dev,
{
struct r8192_priv *priv = rtllib_priv(dev);
- rtl8192_qos_handle_probe_response(priv, 1, network);
+ _rtl92e_qos_handle_probe_response(priv, 1, network);
queue_delayed_work_rsl(priv->priv_wq, &priv->update_beacon_wq, 0);
return 0;