Changeset ba38f72c in mainline for uspace/srv/devman/match.c


Ignore:
Timestamp:
2011-02-07T22:15:37Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1b367b4
Parents:
8b5690f
Message:

Split device tree node into dev_node_t (device node) and fun_node_t (function node).

File:
1 edited

Legend:

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

    r8b5690f rba38f72c  
    5757}
    5858
    59 int get_match_score(driver_t *drv, node_t *dev)
     59int get_match_score(driver_t *drv, dev_node_t *dev)
    6060{
    6161        link_t *drv_head = &drv->match_ids.ids;
    62         link_t *dev_head = &dev->match_ids.ids;
     62        link_t *dev_head = &dev->pfun->match_ids.ids;
    6363       
    6464        if (list_empty(drv_head) || list_empty(dev_head))
Note: See TracChangeset for help on using the changeset viewer.