Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/char/msim-con/msim-con.c

    r4f87a85a r984a9ba  
    8585        irq_cmd_t *msim_cmds = NULL;
    8686        errno_t rc;
    87         bool bound = false;
    8887
    8988        circ_buf_init(&con->cbuf, con->buf, msim_con_buf_size, 1);
     
    144143        }
    145144
    146         bound = true;
    147 
    148         rc = ddf_fun_add_to_category(fun, "console");
    149         if (rc != EOK) {
    150                 ddf_msg(LVL_ERROR, "Error adding function 'a' to category "
    151                     "'console'.");
    152                 goto error;
    153         }
     145        ddf_fun_add_to_category(fun, "console");
    154146
    155147        return EOK;
     
    157149        if (CAP_HANDLE_VALID(con->irq_handle))
    158150                async_irq_unsubscribe(con->irq_handle);
    159         if (bound)
    160                 ddf_fun_unbind(fun);
    161151        if (fun != NULL)
    162152                ddf_fun_destroy(fun);
Note: See TracChangeset for help on using the changeset viewer.