diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2008-04-28 05:14:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:34 -0400 |
commit | f3429545d03a553c6a3e9fcf60ddea31819848ad (patch) | |
tree | 2e94f807c203bbe37ba13bd470c959558ad57d09 | |
parent | 156f1ed640170d70c9fc8e5f6f797ea1f2a1653b (diff) |
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: Robert P. J. Day <rpjday@crashcourse.ca>
Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/isdn/hisax/st5481_usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/hisax/st5481_usb.c b/drivers/isdn/hisax/st5481_usb.c index 4ada66b8b679..427a8b0520f5 100644 --- a/drivers/isdn/hisax/st5481_usb.c +++ b/drivers/isdn/hisax/st5481_usb.c | |||
@@ -342,7 +342,7 @@ void st5481_release_usb(struct st5481_adapter *adapter) | |||
342 | usb_kill_urb(intr->urb); | 342 | usb_kill_urb(intr->urb); |
343 | kfree(intr->urb->transfer_buffer); | 343 | kfree(intr->urb->transfer_buffer); |
344 | usb_free_urb(intr->urb); | 344 | usb_free_urb(intr->urb); |
345 | ctrl->urb = NULL; | 345 | intr->urb = NULL; |
346 | } | 346 | } |
347 | 347 | ||
348 | /* | 348 | /* |