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

staging: rtl8192e: Rename rtl8192_sta_down

Use naming schema found in other rtlwifi devices.
Rename rtl8192_sta_down to _rtl92e_sta_down.
Signed-off-by: default avatarMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5da06ad8
...@@ -785,7 +785,7 @@ static int _rtl8192_sta_up(struct net_device *dev, bool is_silent_reset) ...@@ -785,7 +785,7 @@ static int _rtl8192_sta_up(struct net_device *dev, bool is_silent_reset)
return 0; return 0;
} }
static int rtl8192_sta_down(struct net_device *dev, bool shutdownrf) static int _rtl92e_sta_down(struct net_device *dev, bool shutdownrf)
{ {
struct r8192_priv *priv = rtllib_priv(dev); struct r8192_priv *priv = rtllib_priv(dev);
unsigned long flags = 0; unsigned long flags = 0;
...@@ -2232,7 +2232,7 @@ static int _rtl92e_close(struct net_device *dev) ...@@ -2232,7 +2232,7 @@ static int _rtl92e_close(struct net_device *dev)
static int _rtl92e_down(struct net_device *dev, bool shutdownrf) static int _rtl92e_down(struct net_device *dev, bool shutdownrf)
{ {
if (rtl8192_sta_down(dev, shutdownrf) == -1) if (_rtl92e_sta_down(dev, shutdownrf) == -1)
return -1; return -1;
return 0; return 0;
......
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