Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/main.c

    ra9abe5fc rf278930  
    507507        fun_node_t *fun;
    508508        int rc;
    509        
    510         log_msg(LVL_DEBUG, "devman_drv_fun_online()");
    511        
     509
     510        printf("devman_drv_fun_online()\n");
    512511        fun = find_fun_node(&device_tree, IPC_GET_ARG1(*icall));
    513512        if (fun == NULL) {
     
    527526        rc = online_function(fun);
    528527        if (rc != EOK) {
     528                printf("devman_drv_fun_online() online_fun->ERROR\n");
    529529                fun_del_ref(fun);
    530530                async_answer_0(iid, (sysarg_t) rc);
     
    533533       
    534534        fun_del_ref(fun);
     535        printf("devman_drv_fun_online() online_fun->OK\n");
    535536       
    536537        async_answer_0(iid, (sysarg_t) EOK);
Note: See TracChangeset for help on using the changeset viewer.