Commit d4244a03 authored by Mateusz Kulikowski's avatar Mateusz Kulikowski Committed by Greg Kroah-Hartman

staging: rtl8192e: Rename dm_bandwidth_autoswitch

Use naming schema found in other rtlwifi devices.
Rename dm_bandwidth_autoswitch to _rtl92e_dm_bandwidth_autoswitch.
Signed-off-by: default avatarMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0a263fcf
...@@ -169,7 +169,7 @@ struct drx_path_sel DM_RxPathSelTable; ...@@ -169,7 +169,7 @@ struct drx_path_sel DM_RxPathSelTable;
static void dm_check_rate_adaptive(struct net_device *dev); static void dm_check_rate_adaptive(struct net_device *dev);
static void dm_init_bandwidth_autoswitch(struct net_device *dev); static void dm_init_bandwidth_autoswitch(struct net_device *dev);
static void dm_bandwidth_autoswitch(struct net_device *dev); static void _rtl92e_dm_bandwidth_autoswitch(struct net_device *dev);
static void dm_check_txpower_tracking(struct net_device *dev); static void dm_check_txpower_tracking(struct net_device *dev);
...@@ -274,7 +274,7 @@ void rtl92e_dm_watchdog(struct net_device *dev) ...@@ -274,7 +274,7 @@ void rtl92e_dm_watchdog(struct net_device *dev)
dm_check_txpower_tracking(dev); dm_check_txpower_tracking(dev);
dm_ctrl_initgain_byrssi(dev); dm_ctrl_initgain_byrssi(dev);
dm_bandwidth_autoswitch(dev); _rtl92e_dm_bandwidth_autoswitch(dev);
dm_check_rx_path_selection(dev); dm_check_rx_path_selection(dev);
dm_check_fsync(dev); dm_check_fsync(dev);
...@@ -475,7 +475,7 @@ static void dm_init_bandwidth_autoswitch(struct net_device *dev) ...@@ -475,7 +475,7 @@ static void dm_init_bandwidth_autoswitch(struct net_device *dev)
priv->rtllib->bandwidth_auto_switch.bautoswitch_enable = false; priv->rtllib->bandwidth_auto_switch.bautoswitch_enable = false;
} }
static void dm_bandwidth_autoswitch(struct net_device *dev) static void _rtl92e_dm_bandwidth_autoswitch(struct net_device *dev)
{ {
struct r8192_priv *priv = rtllib_priv(dev); struct r8192_priv *priv = rtllib_priv(dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment