staging: rtl8192u: remove unused variable
Fix the following gcc warning: drivers/staging/rtl8192u/r8192U_core.c:3419:6: warning: variable ‘reset_status’ set but not used [-Wunused-but-set-variable]. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Link: https://lore.kernel.org/r/1617775650-42645-1-git-send-email-jiapeng.chong@linux.alibaba.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
85adda6197
commit
b190d1433a
@ -3416,7 +3416,6 @@ int rtl8192_down(struct net_device *dev)
|
||||
void rtl8192_commit(struct net_device *dev)
|
||||
{
|
||||
struct r8192_priv *priv = ieee80211_priv(dev);
|
||||
int reset_status = 0;
|
||||
|
||||
if (priv->up == 0)
|
||||
return;
|
||||
@ -3428,7 +3427,7 @@ void rtl8192_commit(struct net_device *dev)
|
||||
ieee80211_softmac_stop_protocol(priv->ieee80211);
|
||||
|
||||
rtl8192_rtx_disable(dev);
|
||||
reset_status = _rtl8192_up(dev);
|
||||
_rtl8192_up(dev);
|
||||
}
|
||||
|
||||
static void rtl8192_restart(struct work_struct *work)
|
||||
|
Loading…
Reference in New Issue
Block a user