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

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 5fc2103a0352207f3c7bad3ace59da3b657365f7..ca18640009a9b8f2f20caa79d28165039c1583fe 100644 (file)
@@ -883,7 +883,7 @@ static void rtl8192_init_priv_handler(struct net_device *dev)
        priv->rtllib->stop_send_beacons = rtl8192_stop_beacon;
 
        priv->rtllib->sta_wake_up = rtl8192_hw_wakeup;
-       priv->rtllib->enter_sleep_state = rtl8192_hw_to_sleep;
+       priv->rtllib->enter_sleep_state = rtl92e_enter_sleep;
        priv->rtllib->ps_is_queue_empty = rtl8192_is_tx_queue_empty;
 
        priv->rtllib->GetNmodeSupportBySecCfg = rtl92e_get_nmode_support_by_sec;
index 6bdd0f2ff741d263130f5349c03a199daab1a6d0..327b2b83ed3cb574a4284ae961446f8afcc8851c 100644 (file)
@@ -88,7 +88,7 @@ void rtl8192_hw_wakeup_wq(void *data)
 
 #define MIN_SLEEP_TIME 50
 #define MAX_SLEEP_TIME 10000
-void rtl8192_hw_to_sleep(struct net_device *dev, u64 time)
+void rtl92e_enter_sleep(struct net_device *dev, u64 time)
 {
        struct r8192_priv *priv = rtllib_priv(dev);
 
index 250d5245e5c5a961808d7e1d8ab69266cf290c9f..a962e7f5833c08884c30fc504554ad1d23887e18 100644 (file)
@@ -32,7 +32,7 @@ struct net_device;
 #define RT_CHECK_FOR_HANG_PERIOD 2
 
 void rtl8192_hw_wakeup(struct net_device *dev);
-void rtl8192_hw_to_sleep(struct net_device *dev, u64 time);
+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_ips_leave_wq(void *data);