Changeset beb9336 in mainline for uspace/drv/infrastructure/rootvirt/rootvirt.c
- Timestamp:
- 2012-08-24T14:07:52Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 041ab64
- Parents:
- bd29f9c9 (diff), db81577 (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/rootvirt/rootvirt.c
rbd29f9c9 rbeb9336 151 151 { 152 152 int rc; 153 const char *name = rvfun->fun->name;153 const char *name = ddf_fun_get_name(rvfun->fun); 154 154 155 155 ddf_msg(LVL_DEBUG, "rootvirt_fun_remove('%s')", name); … … 183 183 } 184 184 185 ddf_msg(LVL_DEBUG, "dev_add(handle=%d)", (int)d ev->handle);185 ddf_msg(LVL_DEBUG, "dev_add(handle=%d)", (int)ddf_dev_get_handle(dev)); 186 186 187 187 rootvirt = ddf_dev_data_alloc(dev, sizeof(rootvirt_t)); … … 207 207 static int rootvirt_dev_remove(ddf_dev_t *dev) 208 208 { 209 rootvirt_t *rootvirt = (rootvirt_t *)d ev->driver_data;209 rootvirt_t *rootvirt = (rootvirt_t *)ddf_dev_data_get(dev); 210 210 int rc; 211 211
Note:
See TracChangeset
for help on using the changeset viewer.