Changeset a46e56b in mainline for uspace/drv/intctl/obio/obio.c
- Timestamp:
- 2018-03-22T06:49:35Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 77f0a1d
- Parents:
- 3e242d2
- git-author:
- Jakub Jermar <jakub@…> (2018-03-21 23:29:06)
- git-committer:
- Jakub Jermar <jakub@…> (2018-03-22 06:49:35)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/intctl/obio/obio.c
r3e242d2 ra46e56b 73 73 * @param arg Local argument. 74 74 */ 75 static void obio_connection(cap_call_handle_t i id, ipc_call_t *icall, void *arg)75 static void obio_connection(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg) 76 76 { 77 cap_call_handle_t c allid;77 cap_call_handle_t chandle; 78 78 ipc_call_t call; 79 79 obio_t *obio; … … 82 82 * Answer the first IPC_M_CONNECT_ME_TO call. 83 83 */ 84 async_answer_0(i id, EOK);84 async_answer_0(icall_handle, EOK); 85 85 86 86 obio = (obio_t *)ddf_dev_data_get(ddf_fun_get_dev((ddf_fun_t *)arg)); … … 89 89 int inr; 90 90 91 c allid= async_get_call(&call);91 chandle = async_get_call(&call); 92 92 switch (IPC_GET_IMETHOD(call)) { 93 93 case IRC_ENABLE_INTERRUPT: … … 95 95 pio_set_64(&obio->regs[OBIO_IMR(inr & INO_MASK)], 96 96 1UL << 31, 0); 97 async_answer_0(c allid, EOK);97 async_answer_0(chandle, EOK); 98 98 break; 99 99 case IRC_DISABLE_INTERRUPT: 100 100 /* XXX TODO */ 101 async_answer_0(c allid, EOK);101 async_answer_0(chandle, EOK); 102 102 break; 103 103 case IRC_CLEAR_INTERRUPT: 104 104 inr = IPC_GET_ARG1(call); 105 105 pio_write_64(&obio->regs[OBIO_CIR(inr & INO_MASK)], 0); 106 async_answer_0(c allid, EOK);106 async_answer_0(chandle, EOK); 107 107 break; 108 108 default: 109 async_answer_0(c allid, EINVAL);109 async_answer_0(chandle, EINVAL); 110 110 break; 111 111 }
Note:
See TracChangeset
for help on using the changeset viewer.