Changeset fccf289 in mainline for uspace/drv/bus/usb/ohci/hc.c
- Timestamp:
- 2014-01-18T22:36:24Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c9e954c
- Parents:
- 9f6cb910
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/hc.c
r9f6cb910 rfccf289 103 103 * @return Error code. 104 104 */ 105 int hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res)105 int ohci_hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res) 106 106 { 107 107 assert(code); … … 267 267 } 268 268 269 int hc_status(hcd_t *hcd, uint32_t *status)269 int ohci_hc_status(hcd_t *hcd, uint32_t *status) 270 270 { 271 271 assert(hcd); … … 283 283 /** Add USB transfer to the schedule. 284 284 * 285 * @param[in] instance OHCI hcdriver structure.285 * @param[in] hcd HCD driver structure. 286 286 * @param[in] batch Batch representing the transfer. 287 287 * @return Error code. 288 288 */ 289 int hc_schedule(hcd_t *hcd, usb_transfer_batch_t *batch)289 int ohci_hc_schedule(hcd_t *hcd, usb_transfer_batch_t *batch) 290 290 { 291 291 assert(hcd); … … 324 324 /** Interrupt handling routine 325 325 * 326 * @param[in] instance OHCI hcdriver structure.326 * @param[in] hcd HCD driver structure. 327 327 * @param[in] status Value of the status register at the time of interrupt. 328 328 */ 329 void hc_interrupt(hcd_t *hcd, uint32_t status)329 void ohci_hc_interrupt(hcd_t *hcd, uint32_t status) 330 330 { 331 331 assert(hcd);
Note:
See TracChangeset
for help on using the changeset viewer.