diff options
author | Alexey Khoroshilov <khoroshilov@ispras.ru> | 2016-02-21 01:30:29 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2016-03-07 15:24:06 +0300 |
commit | 064b32f822afd9a578a4ec6bf754cd61cbe0c324 (patch) | |
tree | 8e35516045373030ef15e501baaa225a1b87658f /drivers/net/wireless/atmel/at76c50x-usb.c | |
parent | 8dd37c7cd442411f52b90e8b556d38324450de46 (diff) | |
download | linux-064b32f822afd9a578a4ec6bf754cd61cbe0c324.tar.xz |
at76c50x-usb: avoid double usb_put_dev() after downloading internal firmware in at76_probe()
There is no need in usb_put_dev() if at76_load_internal_fw() succeed.
Found by Linux Driver Verification project (linuxtesting.org).
Signed-off-by: Alexey Khoroshilov <khoroshilov@ispras.ru>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/atmel/at76c50x-usb.c')
-rw-r--r-- | drivers/net/wireless/atmel/at76c50x-usb.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/wireless/atmel/at76c50x-usb.c b/drivers/net/wireless/atmel/at76c50x-usb.c index dab25136214a..1efb1d66e0b7 100644 --- a/drivers/net/wireless/atmel/at76c50x-usb.c +++ b/drivers/net/wireless/atmel/at76c50x-usb.c @@ -2481,9 +2481,7 @@ static int at76_probe(struct usb_interface *interface, dev_err(&interface->dev, "error %d downloading internal firmware\n", ret); - goto exit; } - usb_put_dev(udev); goto exit; } |