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