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

staging: rtl8192e: Rename rtl819x_ifsilentreset

Use naming schema found in other rtlwifi devices.
Rename rtl819x_ifsilentreset to _rtl92e_if_silent_reset.
Signed-off-by: default avatarMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 79fbe932
...@@ -1231,7 +1231,7 @@ static void rtl819x_silentreset_mesh_bk(struct net_device *dev, u8 IsPortal) ...@@ -1231,7 +1231,7 @@ static void rtl819x_silentreset_mesh_bk(struct net_device *dev, u8 IsPortal)
{ {
} }
static void rtl819x_ifsilentreset(struct net_device *dev) static void _rtl92e_if_silent_reset(struct net_device *dev)
{ {
struct r8192_priv *priv = rtllib_priv(dev); struct r8192_priv *priv = rtllib_priv(dev);
u8 reset_times = 0; u8 reset_times = 0;
...@@ -1538,7 +1538,7 @@ static void rtl819x_watchdog_wqcallback(void *data) ...@@ -1538,7 +1538,7 @@ static void rtl819x_watchdog_wqcallback(void *data)
if (((priv->force_reset) || (!priv->bDisableNormalResetCheck && if (((priv->force_reset) || (!priv->bDisableNormalResetCheck &&
ResetType == RESET_TYPE_SILENT))) ResetType == RESET_TYPE_SILENT)))
rtl819x_ifsilentreset(dev); _rtl92e_if_silent_reset(dev);
priv->force_reset = false; priv->force_reset = false;
priv->bForcedSilentReset = false; priv->bForcedSilentReset = false;
priv->bResetInProgress = false; priv->bResetInProgress = false;
......
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