Changeset 9f6cb910 in mainline for uspace/drv/bus/usb/uhci/hc.c
- Timestamp:
- 2014-01-18T22:04:48Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fccf289
- Parents:
- 4bfcf22
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhci/hc.c
r4bfcf22 r9f6cb910 105 105 * @return Error code. 106 106 */ 107 int hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res)107 int uhci_hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res) 108 108 { 109 109 assert(code); … … 154 154 * - resume from suspend state (not implemented) 155 155 */ 156 void hc_interrupt(hcd_t *hcd, uint32_t status)156 void uhci_hc_interrupt(hcd_t *hcd, uint32_t status) 157 157 { 158 158 assert(hcd); … … 408 408 } 409 409 410 int hc_status(hcd_t *hcd, uint32_t *status)410 int uhci_hc_status(hcd_t *hcd, uint32_t *status) 411 411 { 412 412 assert(hcd); … … 432 432 * Checks for bandwidth availability and appends the batch to the proper queue. 433 433 */ 434 int hc_schedule(hcd_t *hcd, usb_transfer_batch_t *batch)434 int uhci_hc_schedule(hcd_t *hcd, usb_transfer_batch_t *batch) 435 435 { 436 436 assert(hcd);
Note:
See TracChangeset
for help on using the changeset viewer.