staging: rtl8192e: Rename dm_ctstoself

Use naming schema found in other rtlwifi devices.
Rename dm_ctstoself to _rtl92e_dm_cts_to_self.

Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Mateusz Kulikowski 2015-09-20 10:19:46 +02:00 committed by Greg Kroah-Hartman
parent 2c696148c6
commit dab9eef4f2
1 changed files with 3 additions and 3 deletions

View File

@ -215,7 +215,7 @@ static void dm_dynamic_txpower(struct net_device *dev);
static void dm_send_rssi_tofw(struct net_device *dev);
static void dm_ctstoself(struct net_device *dev);
static void _rtl92e_dm_cts_to_self(struct net_device *dev);
/*---------------------------Define function prototype------------------------*/
void rtl92e_dm_init(struct net_device *dev)
@ -274,7 +274,7 @@ void rtl92e_dm_watchdog(struct net_device *dev)
_rtl92e_dm_check_fsync(dev);
dm_send_rssi_tofw(dev);
dm_ctstoself(dev);
_rtl92e_dm_cts_to_self(dev);
}
static void _rtl92e_dm_check_ac_dc_power(struct net_device *dev)
@ -1800,7 +1800,7 @@ static void dm_init_ctstoself(struct net_device *dev)
priv->rtllib->bCTSToSelfEnable = true;
}
static void dm_ctstoself(struct net_device *dev)
static void _rtl92e_dm_cts_to_self(struct net_device *dev)
{
struct r8192_priv *priv = rtllib_priv((struct net_device *)dev);
struct rt_hi_throughput *pHTInfo = priv->rtllib->pHTInfo;