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