Changeset 8d2963d in mainline for uspace/drv/time/cmos-rtc/cmos-rtc.c


Ignore:
Timestamp:
2012-04-03T07:51:15Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
923b2eba
Parents:
28ca043f
Message:

rtc: replace time_t with the new tm structure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/time/cmos-rtc/cmos-rtc.c

    r28ca043f r8d2963d  
    6565
    6666static 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_t t);
     67rtc_time_get(ddf_fun_t *fun, struct tm *t);
     68
     69static int
     70rtc_time_set(ddf_fun_t *fun, struct tm *t);
    7171
    7272static int
     
    231231 */
    232232static int
    233 rtc_time_get(ddf_fun_t *fun, time_t *t)
     233rtc_time_get(ddf_fun_t *fun, struct tm *t)
    234234{
    235235        return EOK;
     
    244244 */
    245245static int
    246 rtc_time_set(ddf_fun_t *fun, time_t t)
     246rtc_time_set(ddf_fun_t *fun, struct tm *t)
    247247{
    248248        return EOK;
Note: See TracChangeset for help on using the changeset viewer.