Changeset acce4fc in mainline for uspace/drv/uhci-hcd/uhci.c
- Timestamp:
- 2011-02-18T13:46:55Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e221ca0
- Parents:
- 890af992
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/uhci.c
r890af992 racce4fc 101 101 int ret = uhci_init_transfer_lists(instance); 102 102 CHECK_RET_RETURN(ret, "Failed to initialize transfer lists.\n"); 103 usb_log_debug(" Transfer lists initialized.\n");103 usb_log_debug("Initialized transfer lists.\n"); 104 104 105 105 /* frame list initialization */ 106 usb_log_debug("Initializing frame list.\n");107 106 instance->frame_list = get_page(); 108 107 ret = instance ? EOK : ENOMEM; 109 108 CHECK_RET_RETURN(ret, "Failed to get frame list page.\n"); 109 usb_log_debug("Initialized frame list.\n"); 110 110 111 111 /* initialize all frames to point to the first queue head */ … … 205 205 int uhci_interrupt_emulator(void* arg) 206 206 { 207 return EOK; 207 208 usb_log_debug("Started interrupt emulator.\n"); 208 209 uhci_t *instance = (uhci_t*)arg;
Note:
See TracChangeset
for help on using the changeset viewer.