Changeset a9abe5fc in mainline for uspace/srv/devman/main.c


Ignore:
Timestamp:
2011-09-04T20:38:24Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d7f6248
Parents:
deac215e
Message:

Suppress various messages.

File:
1 edited

Legend:

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

    rdeac215e ra9abe5fc  
    507507        fun_node_t *fun;
    508508        int rc;
    509 
    510         printf("devman_drv_fun_online()\n");
     509       
     510        log_msg(LVL_DEBUG, "devman_drv_fun_online()");
     511       
    511512        fun = find_fun_node(&device_tree, IPC_GET_ARG1(*icall));
    512513        if (fun == NULL) {
     
    526527        rc = online_function(fun);
    527528        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");
    536535       
    537536        async_answer_0(iid, (sysarg_t) EOK);
Note: See TracChangeset for help on using the changeset viewer.