Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f3429545 authored by Robert P. J. Day's avatar Robert P. J. Day Committed by Linus Torvalds
Browse files

isdn: fix obvious cut-and-paste error in st5481_usb.c



Fix a rather obvious cut-and-paste error, where earlier code for the
controller URB got somehow mixed in with code for the interrupt URB.

Signed-off-by: default avatarRobert P. J. Day <rpjday@crashcourse.ca>
Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 156f1ed6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -342,7 +342,7 @@ void st5481_release_usb(struct st5481_adapter *adapter)
	usb_kill_urb(intr->urb);
	kfree(intr->urb->transfer_buffer);
	usb_free_urb(intr->urb);
	ctrl->urb = NULL;
	intr->urb = NULL;
}

/*