Changeset e2a6b72 in mainline for uspace/drv/infrastructure
- Timestamp:
- 2012-10-15T16:28:58Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b3ab8f7
- Parents:
- 7eb49f4 (diff), c4c2406 (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. - Location:
- uspace/drv/infrastructure
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/infrastructure/root/root.c
r7eb49f4 re2a6b72 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
r7eb49f4 re2a6b72 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
r7eb49f4 re2a6b72 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
r7eb49f4 re2a6b72 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.