Changeset 3be9d10 in mainline for uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.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/srv/hid/s3c24xx_ts/s3c24xx_ts.c
readaeae8 r3be9d10 69 69 static s3c24xx_ts_t *ts; 70 70 71 static void s3c24xx_ts_connection( ipc_callid_t iid, ipc_call_t *icall,71 static void s3c24xx_ts_connection(cap_call_handle_t iid, 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( ipc_callid_t iid, ipc_call_t *icall,375 static void s3c24xx_ts_connection(cap_call_handle_t iid, ipc_call_t *icall, 376 376 void *arg) 377 377 { … … 380 380 while (true) { 381 381 ipc_call_t call; 382 ipc_callid_t callid = async_get_call(&call);382 cap_call_handle_t callid = async_get_call(&call); 383 383 384 384 if (!IPC_GET_IMETHOD(call)) {
Note:
See TracChangeset
for help on using the changeset viewer.