Changes in uspace/drv/bus/usb/ehci/hc.h [b7fd2a0:68e5406] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/hc.h
rb7fd2a0 r68e5406 82 82 } hc_t; 83 83 84 errno_t hc_init(hc_t *instance, const hw_res_list_parsed_t *hw_res, bool interrupts);84 int 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 errno_t ehci_hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res, int *irq);90 int 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 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);93 int ehci_hc_status(hcd_t *hcd, uint32_t *status); 94 int 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.