diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2006-05-12 11:29:04 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-06-21 18:04:11 -0400 |
commit | 04538a255ac8b404c20cbf15867c9829254c470f (patch) | |
tree | 8b8a9bf63e9b1b804e2bf732e32db2827f422867 /drivers/usb/host/uhci-hcd.c | |
parent | a0b458b64b2a3a4cb806dd5cd889bbf6c7e9d686 (diff) |
[PATCH] UHCI: Eliminate the TD-removal list
This patch (as682) gets rid of the TD-removal list in uhci-hcd. It is
no longer needed because now TDs are not freed until we know the
hardware isn't using them. It also simplifies the code for adding and
removing TDs to/from URBs.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/uhci-hcd.c')
-rw-r--r-- | drivers/usb/host/uhci-hcd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/host/uhci-hcd.c b/drivers/usb/host/uhci-hcd.c index d225e11f4055..fb4c1a8cadf4 100644 --- a/drivers/usb/host/uhci-hcd.c +++ b/drivers/usb/host/uhci-hcd.c | |||
@@ -492,7 +492,6 @@ static int uhci_start(struct usb_hcd *hcd) | |||
492 | 492 | ||
493 | spin_lock_init(&uhci->lock); | 493 | spin_lock_init(&uhci->lock); |
494 | 494 | ||
495 | INIT_LIST_HEAD(&uhci->td_remove_list); | ||
496 | INIT_LIST_HEAD(&uhci->idle_qh_list); | 495 | INIT_LIST_HEAD(&uhci->idle_qh_list); |
497 | 496 | ||
498 | init_waitqueue_head(&uhci->waitqh); | 497 | init_waitqueue_head(&uhci->waitqh); |