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_hw_res.c

    readaeae8 r3be9d10  
    4141#include "ddf/driver.h"
    4242
    43 static void remote_hw_res_get_resource_list(ddf_fun_t *, void *, ipc_callid_t,
     43static void remote_hw_res_get_resource_list(ddf_fun_t *, void *, cap_call_handle_t,
    4444    ipc_call_t *);
    45 static void remote_hw_res_enable_interrupt(ddf_fun_t *, void *, ipc_callid_t,
     45static void remote_hw_res_enable_interrupt(ddf_fun_t *, void *, cap_call_handle_t,
    4646    ipc_call_t *);
    47 static void remote_hw_res_disable_interrupt(ddf_fun_t *, void *, ipc_callid_t,
     47static void remote_hw_res_disable_interrupt(ddf_fun_t *, void *, cap_call_handle_t,
    4848    ipc_call_t *);
    49 static void remote_hw_res_clear_interrupt(ddf_fun_t *, void *, ipc_callid_t,
     49static void remote_hw_res_clear_interrupt(ddf_fun_t *, void *, cap_call_handle_t,
    5050    ipc_call_t *);
    51 static void remote_hw_res_dma_channel_setup(ddf_fun_t *, void *, ipc_callid_t,
     51static void remote_hw_res_dma_channel_setup(ddf_fun_t *, void *, cap_call_handle_t,
    5252    ipc_call_t *);
    53 static void remote_hw_res_dma_channel_remain(ddf_fun_t *, void *, ipc_callid_t,
     53static void remote_hw_res_dma_channel_remain(ddf_fun_t *, void *, cap_call_handle_t,
    5454    ipc_call_t *);
    5555
     
    6969
    7070static void remote_hw_res_enable_interrupt(ddf_fun_t *fun, void *ops,
    71     ipc_callid_t callid, ipc_call_t *call)
     71    cap_call_handle_t callid, ipc_call_t *call)
    7272{
    7373        hw_res_ops_t *hw_res_ops = (hw_res_ops_t *) ops;
     
    8484
    8585static void remote_hw_res_disable_interrupt(ddf_fun_t *fun, void *ops,
    86     ipc_callid_t callid, ipc_call_t *call)
     86    cap_call_handle_t callid, ipc_call_t *call)
    8787{
    8888        hw_res_ops_t *hw_res_ops = (hw_res_ops_t *) ops;
     
    9999
    100100static void remote_hw_res_clear_interrupt(ddf_fun_t *fun, void *ops,
    101     ipc_callid_t callid, ipc_call_t *call)
     101    cap_call_handle_t callid, ipc_call_t *call)
    102102{
    103103        hw_res_ops_t *hw_res_ops = (hw_res_ops_t *) ops;
     
    114114
    115115static void remote_hw_res_get_resource_list(ddf_fun_t *fun, void *ops,
    116     ipc_callid_t callid, ipc_call_t *call)
     116    cap_call_handle_t callid, ipc_call_t *call)
    117117{
    118118        hw_res_ops_t *hw_res_ops = (hw_res_ops_t *) ops;
     
    140140
    141141static void remote_hw_res_dma_channel_setup(ddf_fun_t *fun, void *ops,
    142     ipc_callid_t callid, ipc_call_t *call)
     142    cap_call_handle_t callid, ipc_call_t *call)
    143143{
    144144        hw_res_ops_t *hw_res_ops = ops;
     
    159159
    160160static void remote_hw_res_dma_channel_remain(ddf_fun_t *fun, void *ops,
    161     ipc_callid_t callid, ipc_call_t *call)
     161    cap_call_handle_t callid, ipc_call_t *call)
    162162{
    163163        hw_res_ops_t *hw_res_ops = ops;
Note: See TracChangeset for help on using the changeset viewer.