Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ohci/hc.h

    rd57122c r8b54fe6  
    7474} hc_t;
    7575
    76 size_t hc_irq_pio_range_count(void);
    7776size_t hc_irq_cmd_count(void);
    78 int hc_get_irq_code(irq_pio_range_t [], size_t, irq_cmd_t [], size_t, uintptr_t,
    79     size_t);
     77int hc_get_irq_commands(
     78    irq_cmd_t cmds[], size_t cmd_size, uintptr_t regs, size_t reg_size);
    8079int hc_register_hub(hc_t *instance, ddf_fun_t *hub_fun);
    8180int hc_init(hc_t *instance, uintptr_t regs, size_t reg_size, bool interrupts);
     
    8786static inline void hc_fini(hc_t *instance) { /* TODO: implement*/ };
    8887
    89 void hc_enqueue_endpoint(hc_t *instance, const endpoint_t *ep);
    90 void hc_dequeue_endpoint(hc_t *instance, const endpoint_t *ep);
     88void hc_enqueue_endpoint(hc_t *instance, endpoint_t *ep);
     89void hc_dequeue_endpoint(hc_t *instance, endpoint_t *ep);
    9190
    9291void hc_interrupt(hc_t *instance, uint32_t status);
Note: See TracChangeset for help on using the changeset viewer.