staging: rtl8192e: Rename rtl819x_RxCheckStuck
Use naming schema found in other rtlwifi devices. Rename rtl819x_RxCheckStuck to _rtl92e_rx_check_stuck. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0ba8f7c0d4
commit
ea2d7059f4
1 changed files with 2 additions and 2 deletions
|
|
@ -1182,7 +1182,7 @@ static enum reset_type _rtl92e_tx_check_stuck(struct net_device *dev)
|
|||
return RESET_TYPE_NORESET;
|
||||
}
|
||||
|
||||
static enum reset_type rtl819x_RxCheckStuck(struct net_device *dev)
|
||||
static enum reset_type _rtl92e_rx_check_stuck(struct net_device *dev)
|
||||
{
|
||||
struct r8192_priv *priv = rtllib_priv(dev);
|
||||
|
||||
|
|
@ -1209,7 +1209,7 @@ static enum reset_type rtl819x_ifcheck_resetornot(struct net_device *dev)
|
|||
if (rfState == eRfOn &&
|
||||
(priv->rtllib->iw_mode == IW_MODE_INFRA) &&
|
||||
(priv->rtllib->state == RTLLIB_LINKED))
|
||||
RxResetType = rtl819x_RxCheckStuck(dev);
|
||||
RxResetType = _rtl92e_rx_check_stuck(dev);
|
||||
|
||||
if (TxResetType == RESET_TYPE_NORMAL ||
|
||||
RxResetType == RESET_TYPE_NORMAL) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue