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/char/sun4v-con/sun4v-con.c

    r3e242d2 ra46e56b  
    180180
    181181/** Character device connection handler. */
    182 static void sun4v_con_connection(cap_call_handle_t iid, ipc_call_t *icall,
     182static void sun4v_con_connection(cap_call_handle_t icall_handle, ipc_call_t *icall,
    183183    void *arg)
    184184{
     
    186186            ddf_fun_get_dev((ddf_fun_t *) arg));
    187187
    188         chardev_conn(iid, icall, &con->cds);
     188        chardev_conn(icall_handle, icall, &con->cds);
    189189}
    190190
Note: See TracChangeset for help on using the changeset viewer.