Changeset a46e56b in mainline for uspace/drv/intctl/obio/obio.c


Ignore:
Timestamp:
2018-03-22T06:49:35Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
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)
Message:

Prefer handle over ID in naming handle variables

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/intctl/obio/obio.c

    r3e242d2 ra46e56b  
    7373 * @param arg           Local argument.
    7474 */
    75 static void obio_connection(cap_call_handle_t iid, ipc_call_t *icall, void *arg)
     75static void obio_connection(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg)
    7676{
    77         cap_call_handle_t callid;
     77        cap_call_handle_t chandle;
    7878        ipc_call_t call;
    7979        obio_t *obio;
     
    8282         * Answer the first IPC_M_CONNECT_ME_TO call.
    8383         */
    84         async_answer_0(iid, EOK);
     84        async_answer_0(icall_handle, EOK);
    8585
    8686        obio = (obio_t *)ddf_dev_data_get(ddf_fun_get_dev((ddf_fun_t *)arg));
     
    8989                int inr;
    9090
    91                 callid = async_get_call(&call);
     91                chandle = async_get_call(&call);
    9292                switch (IPC_GET_IMETHOD(call)) {
    9393                case IRC_ENABLE_INTERRUPT:
     
    9595                        pio_set_64(&obio->regs[OBIO_IMR(inr & INO_MASK)],
    9696                            1UL << 31, 0);
    97                         async_answer_0(callid, EOK);
     97                        async_answer_0(chandle, EOK);
    9898                        break;
    9999                case IRC_DISABLE_INTERRUPT:
    100100                        /* XXX TODO */
    101                         async_answer_0(callid, EOK);
     101                        async_answer_0(chandle, EOK);
    102102                        break;
    103103                case IRC_CLEAR_INTERRUPT:
    104104                        inr = IPC_GET_ARG1(call);
    105105                        pio_write_64(&obio->regs[OBIO_CIR(inr & INO_MASK)], 0);
    106                         async_answer_0(callid, EOK);
     106                        async_answer_0(chandle, EOK);
    107107                        break;
    108108                default:
    109                         async_answer_0(callid, EINVAL);
     109                        async_answer_0(chandle, EINVAL);
    110110                        break;
    111111                }
Note: See TracChangeset for help on using the changeset viewer.