Changes in uspace/drv/ohci/ohci.c [2c49b81b:5d07f54] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/ohci/ohci.c
r2c49b81b r5d07f54 54 54 { 55 55 assert(dev); 56 assert(dev->driver_data); 56 57 hc_t *hc = &((ohci_t*)dev->driver_data)->hc; 57 58 uint16_t status = IPC_GET_ARG1(*call); … … 152 153 usb_log_debug("Memory mapped regs at %p (size %zu), IRQ %d.\n", 153 154 (void *) mem_reg_base, mem_reg_size, irq); 154 155 ret = pci_disable_legacy(device);156 CHECK_RET_DEST_FUN_RETURN(ret,157 "Failed(%d) to disable legacy USB: %s.\n", ret, str_error(ret));158 155 159 156 bool interrupts = false; … … 188 185 "Failed(%d) to bind OHCI device function: %s.\n", 189 186 ret, str_error(ret)); 190 ret = ddf_fun_add_to_class(instance->hc_fun, USB_HC_DDF_CLASS_NAME);191 CHECK_RET_DEST_FUN_RETURN(ret,192 "Failed to add OHCI to HC class: %s.\n", str_error(ret));193 194 187 #undef CHECK_RET_HC_RETURN 195 188 … … 216 209 "Failed(%d) to create root hub function.\n", ret); 217 210 218 hc_register_hub(&instance->hc, instance->rh_fun);219 211 220 212 instance->rh_fun->ops = &rh_ops; 221 213 instance->rh_fun->driver_data = NULL; 222 ret = ddf_fun_bind(instance->rh_fun);223 CHECK_RET_FINI_RETURN(ret,224 "Failed(%d) to register OHCI root hub.\n", ret); 225 214 215 device->driver_data = instance; 216 217 hc_start_hw(&instance->hc); 226 218 return EOK; 227 219 #undef CHECK_RET_FINI_RETURN
Note:
See TracChangeset
for help on using the changeset viewer.