Ignore:
Timestamp:
2018-03-21T21:29:31Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3e242d2
Parents:
eadaeae8
Message:

Get rid of ipc_callid_t

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/generic/remote_clock_dev.c

    readaeae8 r3be9d10  
    4242#include <ddf/driver.h>
    4343
    44 static void remote_clock_time_get(ddf_fun_t *, void *, ipc_callid_t,
     44static void remote_clock_time_get(ddf_fun_t *, void *, cap_call_handle_t,
    4545    ipc_call_t *);
    46 static void remote_clock_time_set(ddf_fun_t *, void *, ipc_callid_t,
     46static void remote_clock_time_set(ddf_fun_t *, void *, cap_call_handle_t,
    4747    ipc_call_t *);
    4848
     
    6969 */
    7070static void
    71 remote_clock_time_get(ddf_fun_t *fun, void *ops, ipc_callid_t callid,
     71remote_clock_time_get(ddf_fun_t *fun, void *ops, cap_call_handle_t callid,
    7272    ipc_call_t *call)
    7373{
    7474        clock_dev_ops_t *clock_dev_ops = (clock_dev_ops_t *) ops;
    75         ipc_callid_t cid;
     75        cap_call_handle_t cid;
    7676        struct tm t;
    7777        errno_t rc;
     
    111111 */
    112112static void remote_clock_time_set(ddf_fun_t *fun, void *ops,
    113     ipc_callid_t callid, ipc_call_t *call)
     113    cap_call_handle_t callid, ipc_call_t *call)
    114114{
    115115        clock_dev_ops_t *clock_dev_ops = (clock_dev_ops_t *) ops;
    116116        errno_t      rc;
    117117        struct tm    t;
    118         ipc_callid_t cid;
     118        cap_call_handle_t cid;
    119119        size_t       len;
    120120
Note: See TracChangeset for help on using the changeset viewer.