Changeset 132ab5d1 in mainline for uspace/lib/c/generic/device/clock_dev.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/c/generic/device/clock_dev.c
r8bfb163 r132ab5d1 44 44 * @param t The current time that will be read from the device 45 45 * 46 * @return EOK on success or a negativeerror code46 * @return EOK on success or an error code 47 47 */ 48 48 int … … 60 60 async_exchange_end(exch); 61 61 62 sysarg_t rc;62 int rc; 63 63 if (ret != EOK) { 64 64 async_forget(req); … … 75 75 * @param t The current time that will be written to the device 76 76 * 77 * @return EOK on success or a negativeerror code77 * @return EOK on success or an error code 78 78 */ 79 79 int … … 91 91 async_exchange_end(exch); 92 92 93 sysarg_t rc;93 int rc; 94 94 if (ret != EOK) { 95 95 async_forget(req);
Note:
See TracChangeset
for help on using the changeset viewer.