Changeset bab71635 in mainline for uspace/drv/ohci/root_hub.c
- Timestamp:
- 2011-03-21T11:13:26Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b0beee82
- Parents:
- c15070c
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/ohci/root_hub.c
rc15070c rbab71635 38 38 #include <usb/debug.h> 39 39 40 #include " ohci_rh.h"40 #include "root_hub.h" 41 41 42 42 /** Root hub initialization 43 43 * @return Error code. 44 44 */ 45 int ohci_rh_init(ohci_rh_t *instance, ohci_regs_t *regs)45 int rh_init(ohci_rh_t *instance, ohci_regs_t *regs) 46 46 { 47 47 assert(instance); … … 55 55 } 56 56 /*----------------------------------------------------------------------------*/ 57 void ohci_rh_request(ohci_rh_t *instance, batch_t *request)57 void rh_request(ohci_rh_t *instance, batch_t *request) 58 58 { 59 59 /* TODO: implement */ 60 60 } 61 61 /*----------------------------------------------------------------------------*/ 62 void ohci_rh_interrupt(ohci_rh_t *instance)62 void rh_interrupt(ohci_rh_t *instance) 63 63 { 64 64 usb_log_info("Interrupt!!.\n");
Note:
See TracChangeset
for help on using the changeset viewer.