Changeset 9f6cb910 in mainline for uspace/drv/bus/usb/uhci/hc.c


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

uhci: Add uhci_ prefix to driver interface functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/uhci/hc.c

    r4bfcf22 r9f6cb910  
    105105 * @return Error code.
    106106 */
    107 int hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res)
     107int uhci_hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res)
    108108{
    109109        assert(code);
     
    154154 * - resume from suspend state (not implemented)
    155155 */
    156 void hc_interrupt(hcd_t *hcd, uint32_t status)
     156void uhci_hc_interrupt(hcd_t *hcd, uint32_t status)
    157157{
    158158        assert(hcd);
     
    408408}
    409409
    410 int hc_status(hcd_t *hcd, uint32_t *status)
     410int uhci_hc_status(hcd_t *hcd, uint32_t *status)
    411411{
    412412        assert(hcd);
     
    432432 * Checks for bandwidth availability and appends the batch to the proper queue.
    433433 */
    434 int hc_schedule(hcd_t *hcd, usb_transfer_batch_t *batch)
     434int uhci_hc_schedule(hcd_t *hcd, usb_transfer_batch_t *batch)
    435435{
    436436        assert(hcd);
Note: See TracChangeset for help on using the changeset viewer.