Changes in uspace/drv/bus/usb/uhci/hc.h [7ee7e6a:fc0271a5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhci/hc.h
r7ee7e6a rfc0271a5 43 43 #include <ddi.h> 44 44 #include <usb/host/hcd.h> 45 #include <usb/host/usb2_bus.h> 45 46 #include <usb/host/usb_transfer_batch.h> 46 47 … … 100 101 typedef struct hc { 101 102 uhci_rh_t rh; 103 usb2_bus_t bus; 102 104 /** Addresses of I/O registers */ 103 105 uhci_regs_t *registers; … … 124 126 } hc_t; 125 127 126 extern int hc_init(hc_t *, const hw_res_list_parsed_t *, bool); 128 extern int hc_init(hc_t *, const hw_res_list_parsed_t *); 129 extern void hc_start(hc_t *); 127 130 extern void hc_fini(hc_t *); 128 131 129 extern int uhci_hc_gen_irq_code(irq_code_t *, const hw_res_list_parsed_t *);132 extern int uhci_hc_gen_irq_code(irq_code_t *, hcd_t *,const hw_res_list_parsed_t *); 130 133 131 134 extern void uhci_hc_interrupt(hcd_t *, uint32_t);
Note:
See TracChangeset
for help on using the changeset viewer.