Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci-hcd/root_hub.c

    rea993d18 rfa3de85  
    5555        int ret = asprintf(&match_str, "usb&uhci&root-hub");
    5656        if (ret < 0) {
    57                 usb_log_error(
    58                     "Failed(%d) to create root hub match string: %s.\n",
    59                     ret, str_error(ret));
    60                 return ret;
     57                usb_log_error("Failed to create root hub match string.\n");
     58                return ENOMEM;
    6159        }
    6260
    6361        ret = ddf_fun_add_match_id(fun, match_str, 100);
    6462        if (ret != EOK) {
    65                 free(match_str);
    6663                usb_log_error("Failed(%d) to add root hub match id: %s\n",
    6764                    ret, str_error(ret));
     
    6966        }
    7067
    71         /* Initialize resource structure */
    72         instance->resource_list.count = 1;
    73         instance->resource_list.resources = &instance->io_regs;
    74 
     68        hw_resource_list_t *resource_list = &instance->resource_list;
     69        resource_list->count = 1;
     70        resource_list->resources = &instance->io_regs;
     71        assert(resource_list->resources);
    7572        instance->io_regs.type = IO_RANGE;
    7673        instance->io_regs.res.io_range.address = reg_addr;
Note: See TracChangeset for help on using the changeset viewer.