Changes in uspace/drv/infrastructure/rootvirt/rootvirt.c [1a5b252:5203e256] in mainline
- File:
-
- 1 edited
-
uspace/drv/infrastructure/rootvirt/rootvirt.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/infrastructure/rootvirt/rootvirt.c
r1a5b252 r5203e256 63 63 64 64 static int rootvirt_add_device(ddf_dev_t *dev); 65 static int rootvirt_fun_online(ddf_fun_t *fun);66 static int rootvirt_fun_offline(ddf_fun_t *fun);67 65 68 66 static driver_ops_t rootvirt_ops = { 69 .add_device = &rootvirt_add_device, 70 .fun_online = &rootvirt_fun_online, 71 .fun_offline = &rootvirt_fun_offline 67 .add_device = &rootvirt_add_device 72 68 }; 73 69 … … 144 140 } 145 141 146 static int rootvirt_fun_online(ddf_fun_t *fun)147 {148 ddf_msg(LVL_DEBUG, "rootvirt_fun_online()");149 return ddf_fun_online(fun);150 }151 152 static int rootvirt_fun_offline(ddf_fun_t *fun)153 {154 ddf_msg(LVL_DEBUG, "rootvirt_fun_offline()");155 return ddf_fun_offline(fun);156 }157 158 142 int main(int argc, char *argv[]) 159 143 {
Note:
See TracChangeset
for help on using the changeset viewer.
