Changeset 3be9d10 in mainline for uspace/lib/drv/generic/remote_hw_res.c
- Timestamp:
- 2018-03-21T21:29:31Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3e242d2
- Parents:
- eadaeae8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_hw_res.c
readaeae8 r3be9d10 41 41 #include "ddf/driver.h" 42 42 43 static void remote_hw_res_get_resource_list(ddf_fun_t *, void *, ipc_callid_t,43 static void remote_hw_res_get_resource_list(ddf_fun_t *, void *, cap_call_handle_t, 44 44 ipc_call_t *); 45 static void remote_hw_res_enable_interrupt(ddf_fun_t *, void *, ipc_callid_t,45 static void remote_hw_res_enable_interrupt(ddf_fun_t *, void *, cap_call_handle_t, 46 46 ipc_call_t *); 47 static void remote_hw_res_disable_interrupt(ddf_fun_t *, void *, ipc_callid_t,47 static void remote_hw_res_disable_interrupt(ddf_fun_t *, void *, cap_call_handle_t, 48 48 ipc_call_t *); 49 static void remote_hw_res_clear_interrupt(ddf_fun_t *, void *, ipc_callid_t,49 static void remote_hw_res_clear_interrupt(ddf_fun_t *, void *, cap_call_handle_t, 50 50 ipc_call_t *); 51 static void remote_hw_res_dma_channel_setup(ddf_fun_t *, void *, ipc_callid_t,51 static void remote_hw_res_dma_channel_setup(ddf_fun_t *, void *, cap_call_handle_t, 52 52 ipc_call_t *); 53 static void remote_hw_res_dma_channel_remain(ddf_fun_t *, void *, ipc_callid_t,53 static void remote_hw_res_dma_channel_remain(ddf_fun_t *, void *, cap_call_handle_t, 54 54 ipc_call_t *); 55 55 … … 69 69 70 70 static 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) 72 72 { 73 73 hw_res_ops_t *hw_res_ops = (hw_res_ops_t *) ops; … … 84 84 85 85 static 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) 87 87 { 88 88 hw_res_ops_t *hw_res_ops = (hw_res_ops_t *) ops; … … 99 99 100 100 static 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) 102 102 { 103 103 hw_res_ops_t *hw_res_ops = (hw_res_ops_t *) ops; … … 114 114 115 115 static 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) 117 117 { 118 118 hw_res_ops_t *hw_res_ops = (hw_res_ops_t *) ops; … … 140 140 141 141 static 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) 143 143 { 144 144 hw_res_ops_t *hw_res_ops = ops; … … 159 159 160 160 static 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) 162 162 { 163 163 hw_res_ops_t *hw_res_ops = ops;
Note:
See TracChangeset
for help on using the changeset viewer.