Lines Matching refs:t
34 int sun3_hwclk(int set, struct rtc_time *t) in sun3_hwclk() argument
48 todintersil->hour = t->tm_hour; in sun3_hwclk()
49 todintersil->minute = t->tm_min; in sun3_hwclk()
50 todintersil->second = t->tm_sec; in sun3_hwclk()
51 todintersil->month = t->tm_mon; in sun3_hwclk()
52 todintersil->day = t->tm_mday; in sun3_hwclk()
53 todintersil->year = t->tm_year - 68; in sun3_hwclk()
54 todintersil->weekday = t->tm_wday; in sun3_hwclk()
57 t->tm_sec = todintersil->csec; in sun3_hwclk()
58 t->tm_hour = todintersil->hour; in sun3_hwclk()
59 t->tm_min = todintersil->minute; in sun3_hwclk()
60 t->tm_sec = todintersil->second; in sun3_hwclk()
61 t->tm_mon = todintersil->month; in sun3_hwclk()
62 t->tm_mday = todintersil->day; in sun3_hwclk()
63 t->tm_year = todintersil->year + 68; in sun3_hwclk()
64 t->tm_wday = todintersil->weekday; in sun3_hwclk()