Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/match.c

    rb72efe8 rba38f72c  
    5959int get_match_score(driver_t *drv, dev_node_t *dev)
    6060{
    61         link_t *drv_head = &drv->match_ids.ids.head;
    62         link_t *dev_head = &dev->pfun->match_ids.ids.head;
     61        link_t *drv_head = &drv->match_ids.ids;
     62        link_t *dev_head = &dev->pfun->match_ids.ids;
    6363       
    64         if (list_empty(&drv->match_ids.ids) ||
    65             list_empty(&dev->pfun->match_ids.ids)) {
     64        if (list_empty(drv_head) || list_empty(dev_head))
    6665                return 0;
    67         }
    6866       
    6967        /*
     
    7270        int highest_score = 0;
    7371       
    74         link_t *drv_link = drv->match_ids.ids.head.next;
     72        link_t *drv_link = drv->match_ids.ids.next;
    7573        while (drv_link != drv_head) {
    7674                link_t *dev_link = dev_head->next;
Note: See TracChangeset for help on using the changeset viewer.