Changes in uspace/srv/devman/devman.c [4087a33:0b5a4131] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/devman.c
r4087a33 r0b5a4131 117 117 printf(NAME": the '%s' driver was added to the list of available " 118 118 "drivers.\n", drv->name); 119 120 printf(NAME ": match ids:");121 link_t *cur;122 for (cur = drv->match_ids.ids.next; cur != &drv->match_ids.ids; cur = cur->next) {123 match_id_t *match_id = list_get_instance(cur, match_id_t, link);124 printf(" %d:%s", match_id->score, match_id->id);125 }126 printf("\n");127 119 } 128 120
Note:
See TracChangeset
for help on using the changeset viewer.