Changeset 8d2963d in mainline for uspace/drv/time/cmos-rtc/cmos-rtc.c
- Timestamp:
- 2012-04-03T07:51:15Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 923b2eba
- Parents:
- 28ca043f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/time/cmos-rtc/cmos-rtc.c
r28ca043f r8d2963d 65 65 66 66 static int 67 rtc_time_get(ddf_fun_t *fun, time_t*t);68 69 static int 70 rtc_time_set(ddf_fun_t *fun, time_tt);67 rtc_time_get(ddf_fun_t *fun, struct tm *t); 68 69 static int 70 rtc_time_set(ddf_fun_t *fun, struct tm *t); 71 71 72 72 static int … … 231 231 */ 232 232 static int 233 rtc_time_get(ddf_fun_t *fun, time_t*t)233 rtc_time_get(ddf_fun_t *fun, struct tm *t) 234 234 { 235 235 return EOK; … … 244 244 */ 245 245 static int 246 rtc_time_set(ddf_fun_t *fun, time_tt)246 rtc_time_set(ddf_fun_t *fun, struct tm *t) 247 247 { 248 248 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.