Changes in uspace/srv/devman/devtree.c [61eb2ce2:0db0df2] in mainline
- File:
-
- 1 edited
-
uspace/srv/devman/devtree.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/devtree.c
r61eb2ce2 r0db0df2 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda 2 3 * Copyright (c) 2010 Lenka Trochtova 3 4 * All rights reserved. … … 31 32 */ 32 33 33 #include <errno.h>34 34 #include <io/log.h> 35 35 … … 60 60 } 61 61 62 static bool devman_devices_key_equal(const void *key, const ht_link_t *item)62 static bool devman_devices_key_equal(const void *key, size_t hash, const ht_link_t *item) 63 63 { 64 64 const devman_handle_t *handle = key; … … 67 67 } 68 68 69 static bool devman_functions_key_equal(const void *key, const ht_link_t *item)69 static bool devman_functions_key_equal(const void *key, size_t hash, const ht_link_t *item) 70 70 { 71 71 const devman_handle_t *handle = key; … … 86 86 } 87 87 88 static bool loc_functions_key_equal(const void *key, const ht_link_t *item)88 static bool loc_functions_key_equal(const void *key, size_t hash, const ht_link_t *item) 89 89 { 90 90 const service_id_t *service_id = key; … … 314 314 } 315 315 316 /** Wait for device tree to stabilize. 317 * 318 * Blocks until the entire device tree had a chance to finish attaching 319 * all devices. 320 * 321 * @param tree Device tree 322 */ 323 void dev_tree_wait_stable(dev_tree_t *tree) 324 { 325 dev_wait_stable(tree->root_node->child); 326 } 327 316 328 /** @} 317 329 */
Note:
See TracChangeset
for help on using the changeset viewer.
