Changeset f9b2cb4c in mainline for uspace/srv/devman/drv_conn.c


Ignore:
Timestamp:
2015-08-23T12:50:23Z (9 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9ef495f
Parents:
0dd16778
Message:

unify interface API

  • introduce new interfaces
  • unify location service clients to always expect service ID as the second argument
  • remove obsolete methods that take explicit exchange management arguments (first phase)
  • use interfaces in device drivers, devman, location service, logger, inet
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/drv_conn.c

    r0dd16778 rf9b2cb4c  
    4949#include <io/log.h>
    5050#include <ipc/devman.h>
    51 #include <ipc/driver.h>
    5251#include <loc.h>
    5352
     
    131130        }
    132131        /* FIXME: Work around problem with callback sessions */
    133         async_sess_args_set(driver->sess, DRIVER_DEVMAN, 0, 0);
     132        async_sess_args_set(driver->sess, INTERFACE_DDF_DEVMAN, 0, 0);
    134133       
    135134        log_msg(LOG_DEFAULT, LVL_NOTE,
     
    587586
    588587/** Function for handling connections from a driver to the device manager. */
    589 void devman_connection_driver(ipc_callid_t iid, ipc_call_t *icall)
     588void devman_connection_driver(ipc_callid_t iid, ipc_call_t *icall, void *arg)
    590589{
    591590        client_t *client;
Note: See TracChangeset for help on using the changeset viewer.