Ignore:
File:
1 edited

Legend:

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

    r8a637a4 racb8766e  
    4949#include <io/log.h>
    5050#include <ipc/devman.h>
     51#include <ipc/driver.h>
    5152#include <loc.h>
    5253
     
    101102                    driver->name);
    102103                fibril_mutex_unlock(&driver->driver_mutex);
    103                 async_answer_0(callid, EEXIST);
     104                async_answer_0(callid, EEXISTS);
    104105                return NULL;
    105106        }
     
    130131        }
    131132        /* FIXME: Work around problem with callback sessions */
    132         async_sess_args_set(driver->sess, INTERFACE_DDF_DEVMAN, 0, 0);
     133        async_sess_args_set(driver->sess, DRIVER_DEVMAN, 0, 0);
    133134       
    134135        log_msg(LOG_DEFAULT, LVL_NOTE,
     
    278279                fibril_rwlock_write_unlock(&tree->rwlock);
    279280                dev_del_ref(pdev);
    280                 async_answer_0(callid, EEXIST);
     281                async_answer_0(callid, EEXISTS);
    281282                printf(NAME ": Warning, driver tried to register `%s' twice.\n",
    282283                    fun_name);
     
    586587
    587588/** Function for handling connections from a driver to the device manager. */
    588 void devman_connection_driver(ipc_callid_t iid, ipc_call_t *icall, void *arg)
     589void devman_connection_driver(ipc_callid_t iid, ipc_call_t *icall)
    589590{
    590591        client_t *client;
Note: See TracChangeset for help on using the changeset viewer.