Changes in uspace/srv/devman/main.c [4122410:fafb8e5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/main.c
r4122410 rfafb8e5 67 67 static void devman_connection_device(ipc_call_t *icall, void *arg) 68 68 { 69 devman_handle_t handle = IPC_GET_ARG2(*icall);69 devman_handle_t handle = ipc_get_arg2(icall); 70 70 dev_node_t *dev = NULL; 71 71 … … 136 136 137 137 async_exch_t *exch = async_exchange_begin(driver->sess); 138 async_forward_ fast(icall, exch, INTERFACE_DDF_CLIENT, handle, 0, IPC_FF_NONE);138 async_forward_1(icall, exch, INTERFACE_DDF_CLIENT, handle, IPC_FF_NONE); 139 139 async_exchange_end(exch); 140 140 … … 149 149 static void devman_connection_parent(ipc_call_t *icall, void *arg) 150 150 { 151 devman_handle_t handle = IPC_GET_ARG2(*icall);151 devman_handle_t handle = ipc_get_arg2(icall); 152 152 dev_node_t *dev = NULL; 153 153 … … 215 215 216 216 async_exch_t *exch = async_exchange_begin(driver->sess); 217 async_forward_ fast(icall, exch, INTERFACE_DDF_DRIVER, fun_handle, 0, IPC_FF_NONE);217 async_forward_1(icall, exch, INTERFACE_DDF_DRIVER, fun_handle, IPC_FF_NONE); 218 218 async_exchange_end(exch); 219 219 … … 228 228 static void devman_forward(ipc_call_t *icall, void *arg) 229 229 { 230 iface_t iface = IPC_GET_ARG1(*icall);231 service_id_t service_id = IPC_GET_ARG2(*icall);230 iface_t iface = ipc_get_arg1(icall); 231 service_id_t service_id = ipc_get_arg2(icall); 232 232 233 233 fun_node_t *fun = find_loc_tree_function(&device_tree, service_id); … … 250 250 251 251 async_exch_t *exch = async_exchange_begin(driver->sess); 252 async_forward_ fast(icall, exch, iface, handle, 0, IPC_FF_NONE);252 async_forward_1(icall, exch, iface, handle, IPC_FF_NONE); 253 253 async_exchange_end(exch); 254 254
Note:
See TracChangeset
for help on using the changeset viewer.