Changeset b7fd2a0 in mainline for uspace/drv/bus/usb/ohci/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/ohci/hc.h
r36f0738 rb7fd2a0 80 80 } hc_t; 81 81 82 extern int hc_init(hc_t *, const hw_res_list_parsed_t *, bool);82 extern errno_t hc_init(hc_t *, const hw_res_list_parsed_t *, bool); 83 83 extern void hc_fini(hc_t *); 84 84 … … 86 86 extern void hc_dequeue_endpoint(hc_t *, const endpoint_t *); 87 87 88 int ohci_hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res, int *irq);88 errno_t ohci_hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res, int *irq); 89 89 90 90 extern void ohci_hc_interrupt(hcd_t *, uint32_t); 91 extern int ohci_hc_status(hcd_t *, uint32_t *);92 extern int ohci_hc_schedule(hcd_t *, usb_transfer_batch_t *);91 extern errno_t ohci_hc_status(hcd_t *, uint32_t *); 92 extern errno_t ohci_hc_schedule(hcd_t *, usb_transfer_batch_t *); 93 93 94 94 #endif
Note:
See TracChangeset
for help on using the changeset viewer.