Changes in uspace/srv/devman/drv_conn.c [cde999a:96ef672] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/drv_conn.c
rcde999a r96ef672 161 161 * 162 162 * @param match_ids The list of the device's match ids. 163 * @return Zero on success, error code otherwise.163 * @return Zero on success, negative error code otherwise. 164 164 */ 165 165 static int devman_receive_match_id(match_id_list_t *match_ids) … … 211 211 * @param match_count The number of device's match ids to be received. 212 212 * @param match_ids The list of the device's match ids. 213 * @return Zero on success, error code otherwise.213 * @return Zero on success, negative error code otherwise. 214 214 */ 215 215 static int devman_receive_match_ids(sysarg_t match_count, … … 407 407 fun_busy_unlock(fun); 408 408 fun_del_ref(fun); 409 async_answer_0(iid, rc);409 async_answer_0(iid, (sysarg_t) rc); 410 410 return; 411 411 } … … 414 414 fun_del_ref(fun); 415 415 416 async_answer_0(iid, EOK);416 async_answer_0(iid, (sysarg_t) EOK); 417 417 } 418 418 … … 448 448 fun_busy_unlock(fun); 449 449 fun_del_ref(fun); 450 async_answer_0(iid, rc);450 async_answer_0(iid, (sysarg_t) rc); 451 451 return; 452 452 } … … 454 454 fun_busy_unlock(fun); 455 455 fun_del_ref(fun); 456 async_answer_0(iid, EOK);456 async_answer_0(iid, (sysarg_t) EOK); 457 457 } 458 458
Note:
See TracChangeset
for help on using the changeset viewer.