Changes in uspace/lib/c/generic/devman.c [b72efe8:e6211f8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/devman.c
rb72efe8 re6211f8 35 35 */ 36 36 37 #include <adt/list.h>38 37 #include <str.h> 39 38 #include <ipc/services.h> … … 195 194 196 195 exch = devman_exchange_begin(DEVMAN_DRIVER); 197 async_connect_to_me(exch, 0, 0, 0, NULL , NULL);196 async_connect_to_me(exch, 0, 0, 0, NULL); 198 197 devman_exchange_end(exch); 199 198 … … 232 231 } 233 232 233 link_t *link = match_ids->ids.next; 234 234 match_id_t *match_id = NULL; 235 235 236 list_foreach(match_ids->ids, link) {236 while (link != &match_ids->ids) { 237 237 match_id = list_get_instance(link, match_id_t, link); 238 238 … … 255 255 return retval; 256 256 } 257 258 link = link->next; 257 259 } 258 260
Note:
See TracChangeset
for help on using the changeset viewer.