Changeset 0b8a3e7 in mainline
- Timestamp:
- 2012-03-30T13:44:15Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b3db669
- Parents:
- 6b329749
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/time/rtc.c
r6b329749 r0b8a3e7 99 99 } 100 100 101 /** Read the current time from the CMOS 102 * 103 * @param fun The RTC function 104 * @param t Pointer to the time variable 105 * 106 * @return EOK on success or a negative error code 107 */ 101 108 static int 102 109 rtc_time_get(ddf_fun_t *fun, time_t *t) … … 105 112 } 106 113 114 /** Set the time in the RTC 115 * 116 * @param fun The RTC function 117 * @param t The time value to set 118 * 119 * @return EOK or a negative error code 120 */ 107 121 static int 108 122 rtc_time_set(ddf_fun_t *fun, time_t t)
Note:
See TracChangeset
for help on using the changeset viewer.