Changeset 6769005 in mainline for uspace/drv/intctl
- 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:
- 53ee7a0
- Parents:
- 94ab1fee
- git-author:
- Jakub Jermar <jakub@…> (2018-10-28 12:42:35)
- git-committer:
- Jakub Jermar <jakub@…> (2018-10-31 06:03:38)
- Location:
- uspace/drv/intctl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/intctl/apic/apic.c
r94ab1fee r6769005 172 172 * Answer the first IPC_M_CONNECT_ME_TO call. 173 173 */ 174 async_answer_ 0(icall, EOK);174 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 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
r94ab1fee r6769005 101 101 * Answer the first IPC_M_CONNECT_ME_TO call. 102 102 */ 103 async_answer_ 0(icall, EOK);103 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 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
r94ab1fee r6769005 77 77 * Answer the first IPC_M_CONNECT_ME_TO call. 78 78 */ 79 async_answer_ 0(icall, EOK);79 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 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
r94ab1fee r6769005 81 81 * Answer the first IPC_M_CONNECT_ME_TO call. 82 82 */ 83 async_answer_ 0(icall, EOK);83 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 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.