Changeset acce4fc in mainline
- 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
- Location:
- uspace/drv/uhci-hcd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/main.c
r890af992 racce4fc 106 106 } 107 107 108 ret = register_interrupt_handler(device, irq, irq_handler, NULL);109 usb_log_error("registered interrupt handler %d.\n", ret);110 111 108 usb_log_info("I/O regs at 0x%X (size %zu), IRQ %d.\n", 112 109 io_reg_base, io_reg_size, irq); 110 111 ret = register_interrupt_handler(device, irq, irq_handler, NULL); 112 usb_log_debug("Registered interrupt handler %d.\n", ret); 113 113 114 114 uhci_t *uhci_hc = malloc(sizeof(uhci_t)); -
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.