Changes in uspace/srv/devman/fun.c [b7fd2a0:96ef672] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/fun.c
rb7fd2a0 r96ef672 286 286 } 287 287 288 static errno_t assign_driver_fibril(void *arg)288 static int assign_driver_fibril(void *arg) 289 289 { 290 290 dev_node_t *dev_node = (dev_node_t *) arg; … … 296 296 } 297 297 298 errno_t fun_online(fun_node_t *fun)298 int fun_online(fun_node_t *fun) 299 299 { 300 300 dev_node_t *dev; … … 354 354 } 355 355 356 errno_t fun_offline(fun_node_t *fun)357 { 358 errno_t rc;356 int fun_offline(fun_node_t *fun) 357 { 358 int rc; 359 359 360 360 fibril_rwlock_write_lock(&device_tree.rwlock);
Note:
See TracChangeset
for help on using the changeset viewer.