Changeset 984a9ba in mainline for uspace/srv/hid/input/proto/mousedev.c
- Timestamp:
- 2018-07-05T09:34:09Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 63d46341
- Parents:
- 76f566d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/proto/mousedev.c
r76f566d r984a9ba 70 70 } 71 71 72 static void mousedev_callback_conn(cap_call_handle_t icall_handle, ipc_call_t *icall, 73 void *arg) 72 static void mousedev_callback_conn(ipc_call_t *icall, void *arg) 74 73 { 75 74 /* Mousedev device structure */ … … 78 77 while (true) { 79 78 ipc_call_t call; 80 cap_call_handle_t chandle =async_get_call(&call);79 async_get_call(&call); 81 80 82 81 if (!IPC_GET_IMETHOD(call)) { … … 110 109 } 111 110 112 async_answer_0( chandle, retval);111 async_answer_0(&call, retval); 113 112 } 114 113 }
Note:
See TracChangeset
for help on using the changeset viewer.