Changeset eb13ef8 in mainline for uspace/srv/devman/main.c
- Timestamp:
- 2019-02-06T13:25:12Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fafb8e5
- Parents:
- bb97118
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-02 14:04:02)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-06 13:25:12)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/main.c
rbb97118 reb13ef8 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 … … 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 … … 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);
Note:
See TracChangeset
for help on using the changeset viewer.