Changeset 25565
- Timestamp:
- 05/19/08 16:41:58 (6 months ago)
- Location:
- haiku/trunk
- Files:
-
- 2 modified
-
build/jam/HaikuImage (modified) (1 diff)
-
src/add-ons/kernel/busses/usb/ohci.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
haiku/trunk/build/jam/HaikuImage
r25536 r25565 150 150 : ahci ; 151 151 AddFilesToHaikuImage beos system add-ons kernel busses usb 152 : <usb>uhci <usb> ehci ;152 : <usb>uhci <usb>ohci <usb>ehci ; 153 153 AddFilesToHaikuImage beos system add-ons kernel console : vga_text ; 154 154 AddFilesToHaikuImage beos system add-ons kernel debugger -
haiku/trunk/src/add-ons/kernel/busses/usb/ohci.cpp
r25558 r25565 993 993 // break the descriptor chain on the last descriptor 994 994 transfer->last_descriptor->next_logical_descriptor = NULL; 995 TRACE(("usb_ohci: transfer %p done\n", transfer)); 995 TRACE(("usb_ohci: transfer %p done with status 0x%08lx\n", 996 transfer, callbackStatus)); 996 997 997 998 // if canceled the callback has already been called … … 1241 1242 ohci_general_td *descriptor = transfer->first_descriptor; 1242 1243 while (descriptor) { 1243 if (endpoint->head_physical_descriptor == descriptor->physical_address) { 1244 if ((endpoint->head_physical_descriptor & OHCI_ENDPOINT_HEAD_MASK) 1245 == descriptor->physical_address) { 1244 1246 // This descriptor caused the halt. Advance the head pointer. This 1245 1247 // will either move the head to the next valid transfer that can
