Ignore:
File:
1 edited

Legend:

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

    rdeac215e r0c0f823b  
    6666#define VIRTUAL_FUN_MATCH_SCORE 100
    6767
    68 static int root_add_device(ddf_dev_t *dev);
     68static int root_dev_add(ddf_dev_t *dev);
    6969static int root_fun_online(ddf_fun_t *fun);
    7070static int root_fun_offline(ddf_fun_t *fun);
     
    7272/** The root device driver's standard operations. */
    7373static driver_ops_t root_ops = {
    74         .add_device = &root_add_device,
     74        .dev_add = &root_dev_add,
    7575        .fun_online = &root_fun_online,
    7676        .fun_offline = &root_fun_offline
     
    198198 *                      of HW and pseudo devices).
    199199 */
    200 static int root_add_device(ddf_dev_t *dev)
    201 {
    202         ddf_msg(LVL_DEBUG, "root_add_device, device handle=%" PRIun,
     200static int root_dev_add(ddf_dev_t *dev)
     201{
     202        ddf_msg(LVL_DEBUG, "root_dev_add, device handle=%" PRIun,
    203203            dev->handle);
    204204
Note: See TracChangeset for help on using the changeset viewer.