Changeset a46e56b in mainline for uspace/drv/hid/adb-kbd/adb-kbd.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/hid/adb-kbd/adb-kbd.c

    r3e242d2 ra46e56b  
    130130}
    131131
    132 static void adb_kbd_events(cap_call_handle_t iid, ipc_call_t *icall, void *arg)
     132static void adb_kbd_events(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg)
    133133{
    134134        adb_kbd_t *kbd = (adb_kbd_t *) arg;
     
    138138
    139139                ipc_call_t call;
    140                 cap_call_handle_t callid = async_get_call(&call);
     140                cap_call_handle_t chandle = async_get_call(&call);
    141141
    142142                errno_t retval = EOK;
     
    154154                        retval = ENOENT;
    155155                }
    156                 async_answer_0(callid, retval);
     156                async_answer_0(chandle, retval);
    157157        }
    158158}
     
    190190
    191191/** Handle client connection */
    192 static void adb_kbd_conn(cap_call_handle_t iid, ipc_call_t *icall, void *arg)
    193 {
    194         cap_call_handle_t callid;
     192static void adb_kbd_conn(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg)
     193{
     194        cap_call_handle_t chandle;
    195195        ipc_call_t call;
    196196        sysarg_t method;
     
    200200         * Answer the first IPC_M_CONNECT_ME_TO call.
    201201         */
    202         async_answer_0(iid, EOK);
     202        async_answer_0(icall_handle, EOK);
    203203
    204204        kbd = (adb_kbd_t *)ddf_dev_data_get(ddf_fun_get_dev((ddf_fun_t *)arg));
    205205
    206206        while (true) {
    207                 callid = async_get_call(&call);
     207                chandle = async_get_call(&call);
    208208                method = IPC_GET_IMETHOD(call);
    209209
    210210                if (!method) {
    211211                        /* The other side has hung up. */
    212                         async_answer_0(callid, EOK);
     212                        async_answer_0(chandle, EOK);
    213213                        return;
    214214                }
     
    218218                if (sess != NULL) {
    219219                        kbd->client_sess = sess;
    220                         async_answer_0(callid, EOK);
     220                        async_answer_0(chandle, EOK);
    221221                } else {
    222                         async_answer_0(callid, EINVAL);
     222                        async_answer_0(chandle, EINVAL);
    223223                }
    224224        }
Note: See TracChangeset for help on using the changeset viewer.