]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: rtl8192e: Rename rtllib_ips_leave
authorMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Sun, 19 Jul 2015 17:33:55 +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 to rtl92e_rtllib_ips_leave.

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 d8729071d5deee2b6e2d55841fc576dfb251a330..d5dbf4f5c7be089d1bc76356246a19527cc5fea1 100644 (file)
@@ -895,7 +895,7 @@ static void rtl8192_init_priv_handler(struct net_device *dev)
        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 = rtllib_ips_leave;
+       priv->rtllib->rtllib_ips_leave = rtl92e_rtllib_ips_leave;
 
        priv->rtllib->LedControlHandler = NULL;
        priv->rtllib->UpdateBeaconInterruptHandler = NULL;
index be5961d7c1aba83993d636e07fe134a40dc8e0cd..3dff7dbad259e651b6c0245094d141bf42d4fe22 100644 (file)
@@ -214,7 +214,7 @@ void rtllib_ips_leave_wq(struct net_device *dev)
        }
 }
 
-void rtllib_ips_leave(struct net_device *dev)
+void rtl92e_rtllib_ips_leave(struct net_device *dev)
 {
        struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
 
index 1a8d1bfa3745ccddb44e72096e3dfa3b7e706ef4..f789af79be2193412e4532b7042d2986f13fc82a 100644 (file)
@@ -34,7 +34,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 rtllib_ips_leave(struct net_device *dev);
+void rtl92e_rtllib_ips_leave(struct net_device *dev);
 void rtl92e_ips_leave_wq(void *data);
 
 void rtl92e_ips_enter(struct net_device *dev);