Changes in uspace/srv/devman/main.c [f278930:a9abe5fc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/main.c
rf278930 ra9abe5fc 507 507 fun_node_t *fun; 508 508 int rc; 509 510 printf("devman_drv_fun_online()\n"); 509 510 log_msg(LVL_DEBUG, "devman_drv_fun_online()"); 511 511 512 fun = find_fun_node(&device_tree, IPC_GET_ARG1(*icall)); 512 513 if (fun == NULL) { … … 526 527 rc = online_function(fun); 527 528 if (rc != EOK) { 528 printf("devman_drv_fun_online() online_fun->ERROR\n");529 529 fun_del_ref(fun); 530 530 async_answer_0(iid, (sysarg_t) rc); … … 533 533 534 534 fun_del_ref(fun); 535 printf("devman_drv_fun_online() online_fun->OK\n");536 535 537 536 async_answer_0(iid, (sysarg_t) EOK);
Note:
See TracChangeset
for help on using the changeset viewer.