Changes in uspace/srv/devman/match.c [ba38f72c:b72efe8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/match.c
rba38f72c rb72efe8 59 59 int get_match_score(driver_t *drv, dev_node_t *dev) 60 60 { 61 link_t *drv_head = &drv->match_ids.ids ;62 link_t *dev_head = &dev->pfun->match_ids.ids ;61 link_t *drv_head = &drv->match_ids.ids.head; 62 link_t *dev_head = &dev->pfun->match_ids.ids.head; 63 63 64 if (list_empty(drv_head) || list_empty(dev_head)) 64 if (list_empty(&drv->match_ids.ids) || 65 list_empty(&dev->pfun->match_ids.ids)) { 65 66 return 0; 67 } 66 68 67 69 /* … … 70 72 int highest_score = 0; 71 73 72 link_t *drv_link = drv->match_ids.ids. next;74 link_t *drv_link = drv->match_ids.ids.head.next; 73 75 while (drv_link != drv_head) { 74 76 link_t *dev_link = dev_head->next;
Note:
See TracChangeset
for help on using the changeset viewer.