Changeset 132ab5d1 in mainline for uspace/lib/drv/generic/driver.c
- Timestamp:
- 2018-01-30T03:20:45Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/driver.c
r8bfb163 r132ab5d1 204 204 205 205 dev_del_ref(dev); 206 async_answer_0(iid, (sysarg_t)rc);206 async_answer_0(iid, rc); 207 207 } 208 208 … … 237 237 238 238 dev_del_ref(dev); 239 async_answer_0(iid, (sysarg_t)rc);239 async_answer_0(iid, rc); 240 240 } 241 241 … … 272 272 fun_del_ref(fun); 273 273 274 async_answer_0(iid, (sysarg_t)rc);274 async_answer_0(iid, rc); 275 275 } 276 276 … … 305 305 rc = ENOTSUP; 306 306 307 async_answer_0(iid, (sysarg_t)rc);307 async_answer_0(iid, rc); 308 308 } 309 309 … … 822 822 * @param fun Function to bind 823 823 * 824 * @return EOK on success or negativeerror code824 * @return EOK on success or an error code 825 825 * 826 826 */ … … 850 850 * @param fun Function to unbind 851 851 * 852 * @return EOK on success or negativeerror code852 * @return EOK on success or an error code 853 853 * 854 854 */ … … 871 871 * @param fun Function to online 872 872 * 873 * @return EOK on success or negativeerror code873 * @return EOK on success or an error code 874 874 * 875 875 */ … … 889 889 * @param fun Function to offline 890 890 * 891 * @return EOK on success or negativeerror code891 * @return EOK on success or an error code 892 892 * 893 893 */
Note:
See TracChangeset
for help on using the changeset viewer.