Changeset 5ef16903 in mainline for uspace/srv/devman
- Timestamp:
- 2018-03-10T21:56:20Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 338d54a7
- Parents:
- 53ad43c
- Location:
- uspace/srv/devman
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/drv_conn.c
r53ad43c r5ef16903 143 143 fid_t fid = fibril_create(init_running_drv, driver); 144 144 if (fid == 0) { 145 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to create initialization fibril " \145 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to create initialization fibril " 146 146 "for driver `%s'.", driver->name); 147 147 fibril_mutex_unlock(&driver->driver_mutex); -
uspace/srv/devman/main.c
r53ad43c r5ef16903 114 114 115 115 if (driver == NULL) { 116 log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - " \116 log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - " 117 117 "the device %" PRIun " is not in usable state.", handle); 118 118 async_answer_0(iid, ENOENT); … … 194 194 195 195 if (driver == NULL) { 196 log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - " \196 log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - " 197 197 "the device %" PRIun " is not in usable state.", handle); 198 198 async_answer_0(iid, ENOENT);
Note:
See TracChangeset
for help on using the changeset viewer.