Changeset d5ba17f in mainline for uspace/drv/infrastructure/root/root.c
- Timestamp:
- 2011-11-18T15:32:24Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 528e5b3
- Parents:
- b12ca16 (diff), 0c0f823b (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/drv/infrastructure/root/root.c
rb12ca16 rd5ba17f 66 66 #define VIRTUAL_FUN_MATCH_SCORE 100 67 67 68 static int root_ add_device(ddf_dev_t *dev);68 static int root_dev_add(ddf_dev_t *dev); 69 69 static int root_fun_online(ddf_fun_t *fun); 70 70 static int root_fun_offline(ddf_fun_t *fun); … … 72 72 /** The root device driver's standard operations. */ 73 73 static driver_ops_t root_ops = { 74 . add_device = &root_add_device,74 .dev_add = &root_dev_add, 75 75 .fun_online = &root_fun_online, 76 76 .fun_offline = &root_fun_offline … … 198 198 * of HW and pseudo devices). 199 199 */ 200 static int root_ add_device(ddf_dev_t *dev)201 { 202 ddf_msg(LVL_DEBUG, "root_ add_device, device handle=%" PRIun,200 static int root_dev_add(ddf_dev_t *dev) 201 { 202 ddf_msg(LVL_DEBUG, "root_dev_add, device handle=%" PRIun, 203 203 dev->handle); 204 204
Note:
See TracChangeset
for help on using the changeset viewer.