Changeset 13b07dd in mainline
- Timestamp:
- 2015-03-22T23:29:56Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ba0eac5
- Parents:
- 4a5ae542 (diff), acb8766e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/drv_conn.c
r4a5ae542 r13b07dd 173 173 callid = async_get_call(&call); 174 174 if (DEVMAN_ADD_MATCH_ID != IPC_GET_IMETHOD(call)) { 175 log_msg(LOG_DEFAULT, LVL_ERROR, 175 log_msg(LOG_DEFAULT, LVL_ERROR, 176 176 "Invalid protocol when trying to receive match id."); 177 async_answer_0(callid, EINVAL); 177 async_answer_0(callid, EINVAL); 178 178 delete_match_id(match_id); 179 179 return EINVAL; … … 246 246 if (ftype != fun_inner && ftype != fun_exposed) { 247 247 /* Unknown function type */ 248 log_msg(LOG_DEFAULT, LVL_ERROR, 248 log_msg(LOG_DEFAULT, LVL_ERROR, 249 249 "Unknown function type %d provided by driver.", 250 250 (int) ftype); … … 404 404 fibril_rwlock_read_unlock(&device_tree.rwlock); 405 405 406 rc = fun_o ffline(fun);406 rc = fun_online(fun); 407 407 if (rc != EOK) { 408 408 fun_busy_unlock(fun);
Note:
See TracChangeset
for help on using the changeset viewer.