Changeset a46e56b in mainline for uspace/lib/drv/generic/remote_battery_dev.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/lib/drv/generic/remote_battery_dev.c
r3e242d2 ra46e56b 118 118 */ 119 119 static void 120 remote_battery_status_get(ddf_fun_t *fun, void *ops, cap_call_handle_t c allid,120 remote_battery_status_get(ddf_fun_t *fun, void *ops, cap_call_handle_t chandle, 121 121 ipc_call_t *call) 122 122 { … … 124 124 125 125 if (bops->battery_status_get == NULL) { 126 async_answer_0(c allid, ENOTSUP);126 async_answer_0(chandle, ENOTSUP); 127 127 return; 128 128 } … … 132 132 133 133 if (rc != EOK) 134 async_answer_0(c allid, rc);134 async_answer_0(chandle, rc); 135 135 else 136 async_answer_1(c allid, rc, batt_status);136 async_answer_1(chandle, rc, batt_status); 137 137 } 138 138 … … 144 144 */ 145 145 static void 146 remote_battery_charge_level_get(ddf_fun_t *fun, void *ops, cap_call_handle_t c allid,146 remote_battery_charge_level_get(ddf_fun_t *fun, void *ops, cap_call_handle_t chandle, 147 147 ipc_call_t *call) 148 148 { … … 150 150 151 151 if (bops->battery_charge_level_get == NULL) { 152 async_answer_0(c allid, ENOTSUP);152 async_answer_0(chandle, ENOTSUP); 153 153 return; 154 154 } … … 158 158 159 159 if (rc != EOK) 160 async_answer_0(c allid, rc);160 async_answer_0(chandle, rc); 161 161 else 162 async_answer_1(c allid, rc, battery_level);162 async_answer_1(chandle, rc, battery_level); 163 163 } 164 164
Note:
See TracChangeset
for help on using the changeset viewer.