Changes in uspace/drv/infrastructure/root/root.c [deac215e:0c0f823b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/infrastructure/root/root.c
rdeac215e r0c0f823b 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.