drivers/staging/line6/driver.c: Drop unneeded put functions.
This seems to be the result of patchesab366c1a
and1027f476
crossing each other. Patchab366c1a
adds calls to usb_put_intf and usb_put_dev at the end of the function line6_probe, in the error handling code, while patch1027f476
moves the calls to the corresponding get function from the beginning to the end of line6_probe, making the calls to put in the error handling code unnecessary. // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
10ceaac958
commit
c5cbebf87f
|
@ -1094,8 +1094,6 @@ static int line6_probe(struct usb_interface *interface,
|
|||
err_destruct:
|
||||
line6_destruct(interface);
|
||||
err_put:
|
||||
usb_put_intf(interface);
|
||||
usb_put_dev(usbdev);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue