Changes in uspace/srv/hid/input/ctl/kbdev.c [a35b458:a46e56b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/ctl/kbdev.c
ra35b458 ra46e56b 54 54 static void kbdev_ctl_set_ind(kbd_dev_t *, unsigned int); 55 55 56 static void kbdev_callback_conn( ipc_callid_t, ipc_call_t *, void *arg);56 static void kbdev_callback_conn(cap_call_handle_t, ipc_call_t *, void *arg); 57 57 58 58 kbd_ctl_ops_t kbdev_ctl = { … … 147 147 } 148 148 149 static void kbdev_callback_conn( ipc_callid_t iid, ipc_call_t *icall, void *arg)149 static void kbdev_callback_conn(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg) 150 150 { 151 151 kbdev_t *kbdev; … … 158 158 while (true) { 159 159 ipc_call_t call; 160 ipc_callid_t callid;160 cap_call_handle_t chandle; 161 161 162 c allid= async_get_call(&call);162 chandle = async_get_call(&call); 163 163 if (!IPC_GET_IMETHOD(call)) { 164 164 kbdev_destroy(kbdev); … … 179 179 } 180 180 181 async_answer_0(c allid, retval);181 async_answer_0(chandle, retval); 182 182 } 183 183 }
Note:
See TracChangeset
for help on using the changeset viewer.