Changeset 267f235 in mainline for uspace/drv/infrastructure


Ignore:
Timestamp:
2012-08-17T13:06:32Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
20dd67e
Parents:
52c4264
Message:

log_init() needs only one parameter

Location:
uspace/drv/infrastructure
Files:
4 edited

Legend:

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

    r52c4264 r267f235  
    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

    r52c4264 r267f235  
    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

    r52c4264 r267f235  
    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

    r52c4264 r267f235  
    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.