Changeset 5a6cc679 in mainline for uspace/drv/bus/usb/ehci/hc.h
- Timestamp:
- 2018-01-31T02:21:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/hc.h
r132ab5d1 r5a6cc679 100 100 101 101 /* Boottime operations */ 102 extern int hc_add(hc_device_t *, const hw_res_list_parsed_t *);103 extern int hc_start(hc_device_t *);104 extern int hc_setup_roothub(hc_device_t *);105 extern int hc_gen_irq_code(irq_code_t *, hc_device_t *, const hw_res_list_parsed_t *, int *);106 extern int hc_gone(hc_device_t *);102 extern errno_t hc_add(hc_device_t *, const hw_res_list_parsed_t *); 103 extern errno_t hc_start(hc_device_t *); 104 extern errno_t hc_setup_roothub(hc_device_t *); 105 extern errno_t hc_gen_irq_code(irq_code_t *, hc_device_t *, const hw_res_list_parsed_t *, int *); 106 extern errno_t hc_gone(hc_device_t *); 107 107 108 108 /** Runtime operations */ 109 109 extern void ehci_hc_interrupt(bus_t *, uint32_t); 110 extern int ehci_hc_status(bus_t *, uint32_t *);111 extern int ehci_hc_schedule(usb_transfer_batch_t *);110 extern errno_t ehci_hc_status(bus_t *, uint32_t *); 111 extern errno_t ehci_hc_schedule(usb_transfer_batch_t *); 112 112 113 113 #endif
Note:
See TracChangeset
for help on using the changeset viewer.