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/lib/drv/generic/remote_battery_dev.c

    r3e242d2 ra46e56b  
    118118 */
    119119static void
    120 remote_battery_status_get(ddf_fun_t *fun, void *ops, cap_call_handle_t callid,
     120remote_battery_status_get(ddf_fun_t *fun, void *ops, cap_call_handle_t chandle,
    121121    ipc_call_t *call)
    122122{
     
    124124
    125125        if (bops->battery_status_get == NULL) {
    126                 async_answer_0(callid, ENOTSUP);
     126                async_answer_0(chandle, ENOTSUP);
    127127                return;
    128128        }
     
    132132
    133133        if (rc != EOK)
    134                 async_answer_0(callid, rc);
     134                async_answer_0(chandle, rc);
    135135        else
    136                 async_answer_1(callid, rc, batt_status);
     136                async_answer_1(chandle, rc, batt_status);
    137137}
    138138
     
    144144 */
    145145static void
    146 remote_battery_charge_level_get(ddf_fun_t *fun, void *ops, cap_call_handle_t callid,
     146remote_battery_charge_level_get(ddf_fun_t *fun, void *ops, cap_call_handle_t chandle,
    147147    ipc_call_t *call)
    148148{
     
    150150
    151151        if (bops->battery_charge_level_get == NULL) {
    152                 async_answer_0(callid, ENOTSUP);
     152                async_answer_0(chandle, ENOTSUP);
    153153                return;
    154154        }
     
    158158
    159159        if (rc != EOK)
    160                 async_answer_0(callid, rc);
     160                async_answer_0(chandle, rc);
    161161        else
    162                 async_answer_1(callid, rc, battery_level);
     162                async_answer_1(chandle, rc, battery_level);
    163163}
    164164
Note: See TracChangeset for help on using the changeset viewer.