Changeset 94e46c9 in mainline for uspace/srv/devman/drv_conn.c
- Timestamp:
- 2015-05-23T04:09:11Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b5143bd
- Parents:
- a25d893 (diff), 0683992 (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
ra25d893 r94e46c9 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.