Changeset c4fb95d3 in mainline for uspace/srv/devman/match.c
- Timestamp:
- 2011-02-18T20:04:56Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d011038
- Parents:
- 87e373b (diff), 8b1ea2d4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/match.c
r87e373b rc4fb95d3 57 57 } 58 58 59 int get_match_score(driver_t *drv, node_t *dev)59 int get_match_score(driver_t *drv, dev_node_t *dev) 60 60 { 61 61 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; 63 63 64 64 if (list_empty(drv_head) || list_empty(dev_head))
Note:
See TracChangeset
for help on using the changeset viewer.