aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8712/usb_intf.c
diff options
context:
space:
mode:
authorThomas Vegas <thomas@grouk.net>2014-06-01 14:34:40 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-06-19 16:40:07 -0700
commit22649bb2b664ca241c8a14b4f886940c3a9cc998 (patch)
treeb818f37b13f8488d197a1defdebf132dd5f2c646 /drivers/staging/rtl8712/usb_intf.c
parentstaging: rtl8712: Fix oops on dongle removal if firmware is not available (diff)
downloadlinux-dev-22649bb2b664ca241c8a14b4f886940c3a9cc998.tar.xz
linux-dev-22649bb2b664ca241c8a14b4f886940c3a9cc998.zip
staging: rtl8712: Remove useless variable 'fw_found'
The net device only exists when firmware is loaded successfully. Firmware presence variable is only used through r871xu_dev_remove() and this function already checks for net device existence. Signed-off-by: Thomas Vegas <thomas@grouk.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8712/usb_intf.c')
-rw-r--r--drivers/staging/rtl8712/usb_intf.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/staging/rtl8712/usb_intf.c b/drivers/staging/rtl8712/usb_intf.c
index bec9d45499ad..beff69b3ff0c 100644
--- a/drivers/staging/rtl8712/usb_intf.c
+++ b/drivers/staging/rtl8712/usb_intf.c
@@ -613,8 +613,7 @@ static void r871xu_dev_remove(struct usb_interface *pusb_intf)
struct _adapter *padapter = netdev_priv(pnetdev);
usb_set_intfdata(pusb_intf, NULL);
- if (padapter->fw_found)
- release_firmware(padapter->fw);
+ release_firmware(padapter->fw);
/* never exit with a firmware callback pending */
wait_for_completion(&padapter->rtl8712_fw_ready);
if (drvpriv.drv_registered == true)
@@ -623,8 +622,7 @@ static void r871xu_dev_remove(struct usb_interface *pusb_intf)
flush_scheduled_work();
udelay(1);
/* Stop driver mlme relation timer */
- if (padapter->fw_found)
- r8712_stop_drv_timers(padapter);
+ r8712_stop_drv_timers(padapter);
r871x_dev_unload(padapter);
r8712_free_drv_sw(padapter);