staging: rtl8192e: Rename rtllib_ips_leave_wq
authorMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Sun, 19 Jul 2015 17:33:56 +0000 (19:33 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Jul 2015 04:26:26 +0000 (21:26 -0700)
Use naming schema found in other rtlwifi devices.
Rename rtllib_ips_leave_wq to rtl92e_rtllib_ips_leave_wq.

Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/rtl_core.c
drivers/staging/rtl8192e/rtl8192e/rtl_ps.c
drivers/staging/rtl8192e/rtl8192e/rtl_ps.h

index d5dbf4f5c7be089d1bc76356246a19527cc5fea1..1a7b6c7c2a0ec362ce3d865162c5d5ab166f627f 100644 (file)
@@ -894,7 +894,7 @@ static void rtl8192_init_priv_handler(struct net_device *dev)
        priv->rtllib->AllowAllDestAddrHandler = rtl92e_set_monitor_mode;
        priv->rtllib->SetFwCmdHandler = NULL;
        priv->rtllib->InitialGainHandler = rtl92e_init_gain;
-       priv->rtllib->rtllib_ips_leave_wq = rtllib_ips_leave_wq;
+       priv->rtllib->rtllib_ips_leave_wq = rtl92e_rtllib_ips_leave_wq;
        priv->rtllib->rtllib_ips_leave = rtl92e_rtllib_ips_leave;
 
        priv->rtllib->LedControlHandler = NULL;
index 3dff7dbad259e651b6c0245094d141bf42d4fe22..38addad24f182a03919349ddebfcb5d21da00cd0 100644 (file)
@@ -192,7 +192,7 @@ void rtl92e_ips_leave_wq(void *data)
        up(&priv->rtllib->ips_sem);
 }
 
-void rtllib_ips_leave_wq(struct net_device *dev)
+void rtl92e_rtllib_ips_leave_wq(struct net_device *dev)
 {
        struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
        enum rt_rf_power_state rtState;
index f789af79be2193412e4532b7042d2986f13fc82a..35fc9e2a3365ba9b7c38a7923b28dd039bb42878 100644 (file)
@@ -33,7 +33,7 @@ struct net_device;
 
 void rtl92e_hw_wakeup(struct net_device *dev);
 void rtl92e_enter_sleep(struct net_device *dev, u64 time);
-void rtllib_ips_leave_wq(struct net_device *dev);
+void rtl92e_rtllib_ips_leave_wq(struct net_device *dev);
 void rtl92e_rtllib_ips_leave(struct net_device *dev);
 void rtl92e_ips_leave_wq(void *data);
 
This page took 0.026369 seconds and 5 git commands to generate.