From 24bee78a3b4ca06891a7873fa4594c377f7beed8 Mon Sep 17 00:00:00 2001 From: Mateusz Kulikowski Date: Sun, 20 Sep 2015 10:13:29 +0200 Subject: [PATCH] staging: rtl8192e: Rename rtl8192_qos_association_resp Use naming schema found in other rtlwifi devices. Rename rtl8192_qos_association_resp to _rtl92e_qos_assoc_resp. Signed-off-by: Mateusz Kulikowski Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8192e/rtl8192e/rtl_core.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c index e05264e22f2d..369344a8c2c2 100644 --- a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c @@ -474,8 +474,8 @@ static int rtl8192_handle_beacon(struct net_device *dev, } -static int rtl8192_qos_association_resp(struct r8192_priv *priv, - struct rtllib_network *network) +static int _rtl92e_qos_assoc_resp(struct r8192_priv *priv, + struct rtllib_network *network) { unsigned long flags; u32 size = sizeof(struct rtllib_qos_parameters); @@ -527,7 +527,7 @@ static int rtl8192_handle_assoc_response(struct net_device *dev, { struct r8192_priv *priv = rtllib_priv(dev); - rtl8192_qos_association_resp(priv, network); + _rtl92e_qos_assoc_resp(priv, network); return 0; } -- 2.34.1