Changeset 8bfb163 in mainline


Ignore:
Timestamp:
2018-01-29T17:52:30Z (6 years ago)
Author:
Jenda <jenda.jzqk73@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
132ab5d1, a1ce9bd
Parents:
705f83a
Message:

ehci: make some more things extern

File:
1 edited

Legend:

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

    r705f83a r8bfb163  
    100100
    101101/* Boottime operations */
    102 int hc_add(hc_device_t *, const hw_res_list_parsed_t *);
    103 int hc_start(hc_device_t *);
    104 int hc_setup_roothub(hc_device_t *);
    105 int hc_gen_irq_code(irq_code_t *, hc_device_t *, const hw_res_list_parsed_t *);
    106 int hc_gone(hc_device_t *);
     102extern int hc_add(hc_device_t *, const hw_res_list_parsed_t *);
     103extern int hc_start(hc_device_t *);
     104extern int hc_setup_roothub(hc_device_t *);
     105extern int hc_gen_irq_code(irq_code_t *, hc_device_t *, const hw_res_list_parsed_t *);
     106extern int hc_gone(hc_device_t *);
    107107
    108108/** Runtime operations */
    109 void ehci_hc_interrupt(bus_t *, uint32_t);
    110 int ehci_hc_status(bus_t *, uint32_t *);
    111 int ehci_hc_schedule(usb_transfer_batch_t *);
     109extern void ehci_hc_interrupt(bus_t *, uint32_t);
     110extern int ehci_hc_status(bus_t *, uint32_t *);
     111extern int ehci_hc_schedule(usb_transfer_batch_t *);
    112112
    113113#endif
Note: See TracChangeset for help on using the changeset viewer.