Changeset b7fd2a0 in mainline for uspace/drv/bus/usb/ehci/hc.h
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/hc.h
r36f0738 rb7fd2a0 82 82 } hc_t; 83 83 84 int hc_init(hc_t *instance, const hw_res_list_parsed_t *hw_res, bool interrupts);84 errno_t hc_init(hc_t *instance, const hw_res_list_parsed_t *hw_res, bool interrupts); 85 85 void hc_fini(hc_t *instance); 86 86 … … 88 88 void hc_dequeue_endpoint(hc_t *instance, const endpoint_t *ep); 89 89 90 int ehci_hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res, int *irq);90 errno_t ehci_hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res, int *irq); 91 91 92 92 void ehci_hc_interrupt(hcd_t *hcd, uint32_t status); 93 int ehci_hc_status(hcd_t *hcd, uint32_t *status);94 int ehci_hc_schedule(hcd_t *hcd, usb_transfer_batch_t *batch);93 errno_t ehci_hc_status(hcd_t *hcd, uint32_t *status); 94 errno_t ehci_hc_schedule(hcd_t *hcd, usb_transfer_batch_t *batch); 95 95 #endif 96 96 /**
Note:
See TracChangeset
for help on using the changeset viewer.