Changeset 83a2f43 in mainline for uspace/drv/rootvirt/rootvirt.c
- Timestamp:
- 2011-02-15T19:43:50Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- af6b5157
- Parents:
- 34588a80
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/rootvirt/rootvirt.c
r34588a80 r83a2f43 61 61 }; 62 62 63 static int rootvirt_add_device(d evice_t *dev);63 static int rootvirt_add_device(ddf_dev_t *dev); 64 64 65 65 static driver_ops_t rootvirt_ops = { … … 78 78 * @return EOK on success or negative error code. 79 79 */ 80 static int rootvirt_add_fun(d evice_t *vdev, virtual_function_t *vfun)80 static int rootvirt_add_fun(ddf_dev_t *vdev, virtual_function_t *vfun) 81 81 { 82 function_t *fun;82 ddf_fun_t *fun; 83 83 int rc; 84 84 … … 112 112 } 113 113 114 static int rootvirt_add_device(d evice_t *dev)114 static int rootvirt_add_device(ddf_dev_t *dev) 115 115 { 116 116 static int instances = 0; … … 142 142 { 143 143 printf(NAME ": HelenOS virtual devices root driver\n"); 144 return d river_main(&rootvirt_driver);144 return ddf_driver_main(&rootvirt_driver); 145 145 } 146 146
Note:
See TracChangeset
for help on using the changeset viewer.