Changeset 7bd99bf in mainline for uspace/drv/bus/usb/xhci/hc.c
- Timestamp:
- 2017-07-14T17:28:06Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c058a388
- Parents:
- 05aeee0e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/hc.c
r05aeee0e r7bd99bf 40 40 #include "debug.h" 41 41 #include "hc.h" 42 #include "rh.h" 42 43 #include "hw_struct/trb.h" 43 44 #include "commands.h" … … 360 361 static void hc_handle_event(xhci_hc_t *hc, xhci_trb_t *trb) 361 362 { 363 usb_log_debug2("TRB event encountered."); 362 364 switch (TRB_TYPE(*trb)) { 363 365 case XHCI_TRB_TYPE_COMMAND_COMPLETION_EVENT: 364 366 xhci_handle_command_completion(hc, trb); 367 break; 368 case XHCI_TRB_TYPE_PORT_STATUS_CHANGE_EVENT: 369 xhci_handle_port_status_change_event(hc, trb); 365 370 break; 366 371 default:
Note:
See TracChangeset
for help on using the changeset viewer.