Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/block/ddisk/ddisk.c

    r4f87a85a r09ab0a9a  
    319319        errno_t rc;
    320320        ddf_fun_t *fun = NULL;
    321         bool bound = false;
    322321
    323322        fun = ddf_fun_create(ddisk->dev, fun_exposed, DDISK_FUN_NAME);
     
    338337        }
    339338
    340         bound = true;
    341 
    342         rc = ddf_fun_add_to_category(fun, "disk");
    343         if (rc != EOK) {
    344                 ddf_msg(LVL_ERROR, "Failed adding function %s to category "
    345                     "'disk': %s.\n", DDISK_FUN_NAME, str_error(rc));
    346                 goto error;
    347         }
     339        ddf_fun_add_to_category(fun, "disk");
    348340        ddisk->fun = fun;
    349341
    350342        return EOK;
    351343error:
    352         if (bound)
    353                 ddf_fun_unbind(fun);
    354344        if (fun != NULL)
    355345                ddf_fun_destroy(fun);
Note: See TracChangeset for help on using the changeset viewer.