Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/loc.c

    rca48672 ra35b458  
    11/*
    2  * Copyright (c) 2025 Jiri Svoboda
    32 * Copyright (c) 2010 Lenka Trochtova
    43 * All rights reserved.
     
    3837#include "fun.h"
    3938#include "loc.h"
    40 #include "main.h"
    4139
    4240/** Create loc path and name for the function. */
     
    6159        }
    6260
    63         loc_service_register(devman_srv, loc_pathname, fallback_port_id,
    64             &fun->service_id);
     61        loc_service_register(loc_pathname, &fun->service_id);
    6562
    6663        tree_add_loc_function(tree, fun);
     
    7269errno_t loc_unregister_tree_function(fun_node_t *fun, dev_tree_t *tree)
    7370{
    74         errno_t rc = loc_service_unregister(devman_srv, fun->service_id);
     71        errno_t rc = loc_service_unregister(fun->service_id);
    7572        tree_rem_loc_function(tree, fun);
    7673        return rc;
Note: See TracChangeset for help on using the changeset viewer.