Changeset a46e56b in mainline for uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.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/srv/hid/s3c24xx_ts/s3c24xx_ts.c
r3e242d2 ra46e56b 69 69 static s3c24xx_ts_t *ts; 70 70 71 static void s3c24xx_ts_connection(cap_call_handle_t i id, ipc_call_t *icall,71 static void s3c24xx_ts_connection(cap_call_handle_t icall_handle, ipc_call_t *icall, 72 72 void *arg); 73 73 static void s3c24xx_ts_irq_handler(ipc_call_t *call, void *); … … 373 373 374 374 /** Handle mouse client connection. */ 375 static void s3c24xx_ts_connection(cap_call_handle_t i id, ipc_call_t *icall,375 static void s3c24xx_ts_connection(cap_call_handle_t icall_handle, ipc_call_t *icall, 376 376 void *arg) 377 377 { 378 async_answer_0(i id, EOK);378 async_answer_0(icall_handle, EOK); 379 379 380 380 while (true) { 381 381 ipc_call_t call; 382 cap_call_handle_t c allid= async_get_call(&call);382 cap_call_handle_t chandle = async_get_call(&call); 383 383 384 384 if (!IPC_GET_IMETHOD(call)) { … … 388 388 } 389 389 390 async_answer_0(c allid, EOK);390 async_answer_0(chandle, EOK); 391 391 return; 392 392 } … … 397 397 if (ts->client_sess == NULL) { 398 398 ts->client_sess = sess; 399 async_answer_0(c allid, EOK);399 async_answer_0(chandle, EOK); 400 400 } else 401 async_answer_0(c allid, ELIMIT);401 async_answer_0(chandle, ELIMIT); 402 402 } else 403 async_answer_0(c allid, EINVAL);403 async_answer_0(chandle, EINVAL); 404 404 } 405 405 }
Note:
See TracChangeset
for help on using the changeset viewer.