Changes in uspace/srv/devman/loc.c [a35b458:ca48672] in mainline
- File:
-
- 1 edited
-
uspace/srv/devman/loc.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/loc.c
ra35b458 rca48672 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda 2 3 * Copyright (c) 2010 Lenka Trochtova 3 4 * All rights reserved. … … 37 38 #include "fun.h" 38 39 #include "loc.h" 40 #include "main.h" 39 41 40 42 /** Create loc path and name for the function. */ … … 59 61 } 60 62 61 loc_service_register(loc_pathname, &fun->service_id); 63 loc_service_register(devman_srv, loc_pathname, fallback_port_id, 64 &fun->service_id); 62 65 63 66 tree_add_loc_function(tree, fun); … … 69 72 errno_t loc_unregister_tree_function(fun_node_t *fun, dev_tree_t *tree) 70 73 { 71 errno_t rc = loc_service_unregister( fun->service_id);74 errno_t rc = loc_service_unregister(devman_srv, fun->service_id); 72 75 tree_rem_loc_function(tree, fun); 73 76 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.
