Changeset a46e56b in mainline for uspace/drv/hid/adb-kbd/adb-kbd.c
- Timestamp:
- 2018-03-22T06:49:35Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 77f0a1d
- Parents:
- 3e242d2
- git-author:
- Jakub Jermar <jakub@…> (2018-03-21 23:29:06)
- git-committer:
- Jakub Jermar <jakub@…> (2018-03-22 06:49:35)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/hid/adb-kbd/adb-kbd.c
r3e242d2 ra46e56b 130 130 } 131 131 132 static void adb_kbd_events(cap_call_handle_t i id, ipc_call_t *icall, void *arg)132 static void adb_kbd_events(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg) 133 133 { 134 134 adb_kbd_t *kbd = (adb_kbd_t *) arg; … … 138 138 139 139 ipc_call_t call; 140 cap_call_handle_t c allid= async_get_call(&call);140 cap_call_handle_t chandle = async_get_call(&call); 141 141 142 142 errno_t retval = EOK; … … 154 154 retval = ENOENT; 155 155 } 156 async_answer_0(c allid, retval);156 async_answer_0(chandle, retval); 157 157 } 158 158 } … … 190 190 191 191 /** Handle client connection */ 192 static void adb_kbd_conn(cap_call_handle_t i id, ipc_call_t *icall, void *arg)193 { 194 cap_call_handle_t c allid;192 static void adb_kbd_conn(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg) 193 { 194 cap_call_handle_t chandle; 195 195 ipc_call_t call; 196 196 sysarg_t method; … … 200 200 * Answer the first IPC_M_CONNECT_ME_TO call. 201 201 */ 202 async_answer_0(i id, EOK);202 async_answer_0(icall_handle, EOK); 203 203 204 204 kbd = (adb_kbd_t *)ddf_dev_data_get(ddf_fun_get_dev((ddf_fun_t *)arg)); 205 205 206 206 while (true) { 207 c allid= async_get_call(&call);207 chandle = async_get_call(&call); 208 208 method = IPC_GET_IMETHOD(call); 209 209 210 210 if (!method) { 211 211 /* The other side has hung up. */ 212 async_answer_0(c allid, EOK);212 async_answer_0(chandle, EOK); 213 213 return; 214 214 } … … 218 218 if (sess != NULL) { 219 219 kbd->client_sess = sess; 220 async_answer_0(c allid, EOK);220 async_answer_0(chandle, EOK); 221 221 } else { 222 async_answer_0(c allid, EINVAL);222 async_answer_0(chandle, EINVAL); 223 223 } 224 224 }
Note:
See TracChangeset
for help on using the changeset viewer.