Changeset beb83c1 in mainline for uspace/drv
- Timestamp:
- 2018-10-31T06:03:38Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 208db5a
- Parents:
- 167616c
- git-author:
- Jakub Jermar <jakub@…> (2018-10-31 00:41:46)
- git-committer:
- Jakub Jermar <jakub@…> (2018-10-31 06:03:38)
- Location:
- uspace/drv
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/adb/cuda_adb/cuda_adb.c
r167616c rbeb83c1 204 204 205 205 /* Answer the IPC_M_CONNECT_ME_TO call. */ 206 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());206 async_accept_0(icall); 207 207 208 208 while (true) { -
uspace/drv/hid/adb-kbd/adb-kbd.c
r167616c rbeb83c1 199 199 * Answer the first IPC_M_CONNECT_ME_TO call. 200 200 */ 201 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());201 async_accept_0(icall); 202 202 203 203 kbd = (adb_kbd_t *)ddf_dev_data_get(ddf_fun_get_dev((ddf_fun_t *)arg)); -
uspace/drv/hid/adb-mouse/adb-mouse.c
r167616c rbeb83c1 209 209 * Answer the first IPC_M_CONNECT_ME_TO call. 210 210 */ 211 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());211 async_accept_0(icall); 212 212 213 213 mouse = (adb_mouse_t *)ddf_dev_data_get(ddf_fun_get_dev((ddf_fun_t *)arg)); -
uspace/drv/intctl/apic/apic.c
r167616c rbeb83c1 172 172 * Answer the first IPC_M_CONNECT_ME_TO call. 173 173 */ 174 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());174 async_accept_0(icall); 175 175 176 176 apic = (apic_t *) ddf_dev_data_get(ddf_fun_get_dev((ddf_fun_t *) arg)); -
uspace/drv/intctl/i8259/i8259.c
r167616c rbeb83c1 101 101 * Answer the first IPC_M_CONNECT_ME_TO call. 102 102 */ 103 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());103 async_accept_0(icall); 104 104 105 105 i8259 = (i8259_t *) ddf_dev_data_get(ddf_fun_get_dev((ddf_fun_t *) arg)); -
uspace/drv/intctl/icp-ic/icp-ic.c
r167616c rbeb83c1 77 77 * Answer the first IPC_M_CONNECT_ME_TO call. 78 78 */ 79 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());79 async_accept_0(icall); 80 80 81 81 icpic = (icpic_t *) ddf_dev_data_get(ddf_fun_get_dev((ddf_fun_t *) arg)); -
uspace/drv/intctl/obio/obio.c
r167616c rbeb83c1 81 81 * Answer the first IPC_M_CONNECT_ME_TO call. 82 82 */ 83 async_a nswer_5(icall, EOK, 0, 0, 0, 0, async_get_label());83 async_accept_0(icall); 84 84 85 85 obio = (obio_t *) ddf_dev_data_get(ddf_fun_get_dev((ddf_fun_t *) arg));
Note:
See TracChangeset
for help on using the changeset viewer.