Changeset e2a6b72 in mainline for uspace/drv/infrastructure


Ignore:
Timestamp:
2012-10-15T16:28:58Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
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.
Message:

Merge mainline and io improvements.

Location:
uspace/drv/infrastructure
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/infrastructure/root/root.c

    r7eb49f4 re2a6b72  
    237237        printf(NAME ": HelenOS root device driver\n");
    238238
    239         ddf_log_init(NAME, LVL_ERROR);
     239        ddf_log_init(NAME);
    240240        return ddf_driver_main(&root_driver);
    241241}
  • uspace/drv/infrastructure/rootmac/rootmac.c

    r7eb49f4 re2a6b72  
    179179{
    180180        printf("%s: HelenOS Mac platform driver\n", NAME);
    181         ddf_log_init(NAME, LVL_ERROR);
     181        ddf_log_init(NAME);
    182182        rootmac_fun_ops.interfaces[HW_RES_DEV_IFACE] = &fun_hw_res_ops;
    183183        return ddf_driver_main(&rootmac_driver);
  • uspace/drv/infrastructure/rootpc/rootpc.c

    r7eb49f4 re2a6b72  
    195195static void root_pc_init(void)
    196196{
    197         ddf_log_init(NAME, LVL_ERROR);
     197        ddf_log_init(NAME);
    198198        rootpc_fun_ops.interfaces[HW_RES_DEV_IFACE] = &fun_hw_res_ops;
    199199}
  • uspace/drv/infrastructure/rootvirt/rootvirt.c

    r7eb49f4 re2a6b72  
    240240        printf(NAME ": HelenOS virtual devices root driver\n");
    241241
    242         ddf_log_init(NAME, LVL_ERROR);
     242        ddf_log_init(NAME);
    243243        return ddf_driver_main(&rootvirt_driver);
    244244}
Note: See TracChangeset for help on using the changeset viewer.