Changeset fccf289 in mainline for uspace/drv/bus/usb/ohci/hc.h


Ignore:
Timestamp:
2014-01-18T22:36:24Z (10 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c9e954c
Parents:
9f6cb910
Message:

ohci: Add ohci_ prefix to driver interface functions.

File:
1 edited

Legend:

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

    r9f6cb910 rfccf289  
    7878} hc_t;
    7979
    80 int hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res);
    81 int hc_register_hub(hc_t *instance, ddf_fun_t *hub_fun);
    8280int hc_init(hc_t *instance, const hw_res_list_parsed_t *hw_res, bool interrupts);
    8381void hc_fini(hc_t *instance);
     
    8583void hc_enqueue_endpoint(hc_t *instance, const endpoint_t *ep);
    8684void hc_dequeue_endpoint(hc_t *instance, const endpoint_t *ep);
    87 int hc_schedule(hcd_t *hcd, usb_transfer_batch_t *batch);
    88 int hc_status(hcd_t *hcd, uint32_t *status);
    8985
    90 void hc_interrupt(hcd_t *hcd, uint32_t status);
     86int ohci_hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res);
     87
     88void ohci_hc_interrupt(hcd_t *hcd, uint32_t status);
     89int ohci_hc_status(hcd_t *hcd, uint32_t *status);
     90int ohci_hc_schedule(hcd_t *hcd, usb_transfer_batch_t *batch);
    9191#endif
    9292/**
Note: See TracChangeset for help on using the changeset viewer.