Changeset d32d51d in mainline for uspace/drv/bus/usb/xhci/rh.c
- Timestamp:
- 2017-08-20T12:01:35Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 07c08ea
- Parents:
- 5ff9e1d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/rh.c
r5ff9e1d rd32d51d 44 44 #include "rh.h" 45 45 46 int xhci_rh_init(xhci_rh_t *rh) 47 { 48 /* TODO: Implement me! */ 49 return EOK; 50 } 51 46 52 // TODO: Check device deallocation, we free device_ctx in hc.c, not 47 53 // sure about the other structs. … … 221 227 } 222 228 229 int xhci_rh_schedule(xhci_rh_t *rh, usb_transfer_batch_t *batch) 230 { 231 /* TODO: Implement me! */ 232 return EOK; 233 } 234 235 int xhci_rh_fini(xhci_rh_t *rh) 236 { 237 /* TODO: Implement me! */ 238 return EOK; 239 } 240 223 241 224 242 /**
Note:
See TracChangeset
for help on using the changeset viewer.