Changeset 267f235 in mainline for uspace/drv/infrastructure
- Timestamp:
- 2012-08-17T13:06:32Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 20dd67e
- Parents:
- 52c4264
- Location:
- uspace/drv/infrastructure
- Files:
-
- 4 edited
-
root/root.c (modified) (1 diff)
-
rootmac/rootmac.c (modified) (1 diff)
-
rootpc/rootpc.c (modified) (1 diff)
-
rootvirt/rootvirt.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/infrastructure/root/root.c
r52c4264 r267f235 237 237 printf(NAME ": HelenOS root device driver\n"); 238 238 239 ddf_log_init(NAME , LVL_ERROR);239 ddf_log_init(NAME); 240 240 return ddf_driver_main(&root_driver); 241 241 } -
uspace/drv/infrastructure/rootmac/rootmac.c
r52c4264 r267f235 179 179 { 180 180 printf("%s: HelenOS Mac platform driver\n", NAME); 181 ddf_log_init(NAME , LVL_ERROR);181 ddf_log_init(NAME); 182 182 rootmac_fun_ops.interfaces[HW_RES_DEV_IFACE] = &fun_hw_res_ops; 183 183 return ddf_driver_main(&rootmac_driver); -
uspace/drv/infrastructure/rootpc/rootpc.c
r52c4264 r267f235 195 195 static void root_pc_init(void) 196 196 { 197 ddf_log_init(NAME , LVL_ERROR);197 ddf_log_init(NAME); 198 198 rootpc_fun_ops.interfaces[HW_RES_DEV_IFACE] = &fun_hw_res_ops; 199 199 } -
uspace/drv/infrastructure/rootvirt/rootvirt.c
r52c4264 r267f235 240 240 printf(NAME ": HelenOS virtual devices root driver\n"); 241 241 242 ddf_log_init(NAME , LVL_ERROR);242 ddf_log_init(NAME); 243 243 return ddf_driver_main(&rootvirt_driver); 244 244 }
Note:
See TracChangeset
for help on using the changeset viewer.
