Changeset 29e7cc7 in mainline for uspace/srv/devman/devtree.c
- Timestamp:
- 2025-04-18T15:14:10Z (2 months ago)
- Children:
- e77c3ed
- Parents:
- 800d188 (diff), 25fdb2d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/devtree.c
r800d188 r29e7cc7 32 32 */ 33 33 34 #include <errno.h>35 34 #include <io/log.h> 36 35 … … 61 60 } 62 61 63 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) 64 63 { 65 64 const devman_handle_t *handle = key; … … 68 67 } 69 68 70 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) 71 70 { 72 71 const devman_handle_t *handle = key; … … 87 86 } 88 87 89 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) 90 89 { 91 90 const service_id_t *service_id = key;
Note:
See TracChangeset
for help on using the changeset viewer.