Messages in this thread Patch in this message |  | | Date | Thu, 30 Nov 2000 00:17:01 -0800 | From | Greg KH <> | Subject | Re: Keyspan USB PDA adapter && test12pre3 hang |
| |
Wed, Nov 29, 2000 at 11:44:20PM -0800 X-Operating-System: Linux 2.2.17-immunix (i686)
On Wed, Nov 29, 2000 at 11:44:20PM -0800, Greg KH wrote: > If so, the following fix from Georg Acher should do the trick: > > ----- > Replace line 275 (insert_td()) > qh->hw.qh.element = virt_to_bus (new) | UHCI_PTR_TERM; > by > qh->hw.qh.element = virt_to_bus (new) ; > > -----
Here's the above in patch form to make it easier for people to apply.
greg k-h
-- greg@(kroah|wirex).com diff -Naur -X dontdiff linux-2.4.0-test12-pre3/drivers/usb/usb-uhci.c linux-2.4.0-test12-pre3-greg/drivers/usb/usb-uhci.c --- linux-2.4.0-test12-pre3/drivers/usb/usb-uhci.c Wed Nov 29 23:37:19 2000 +++ linux-2.4.0-test12-pre3-greg/drivers/usb/usb-uhci.c Thu Nov 30 00:17:29 2000 @@ -272,7 +272,7 @@ if (qh == prev ) { // virgin qh without any tds - qh->hw.qh.element = virt_to_bus (new) | UHCI_PTR_TERM; + qh->hw.qh.element = virt_to_bus (new); } else { // already tds inserted, implicitely remove TERM bit of prev |  |