Lines Matching refs:todintersil
29 volatile struct intersil_dt *todintersil; in sun3_hwclk() local
32 todintersil = (struct intersil_dt *) &intersil_clock->counter; in sun3_hwclk()
40 todintersil->csec = 0; in sun3_hwclk()
41 todintersil->hour = t->tm_hour; in sun3_hwclk()
42 todintersil->minute = t->tm_min; in sun3_hwclk()
43 todintersil->second = t->tm_sec; in sun3_hwclk()
44 todintersil->month = t->tm_mon + 1; in sun3_hwclk()
45 todintersil->day = t->tm_mday; in sun3_hwclk()
46 todintersil->year = (t->tm_year - 68) % 100; in sun3_hwclk()
47 todintersil->weekday = t->tm_wday; in sun3_hwclk()
50 t->tm_sec = todintersil->csec; in sun3_hwclk()
51 t->tm_hour = todintersil->hour; in sun3_hwclk()
52 t->tm_min = todintersil->minute; in sun3_hwclk()
53 t->tm_sec = todintersil->second; in sun3_hwclk()
54 t->tm_mon = todintersil->month - 1; in sun3_hwclk()
55 t->tm_mday = todintersil->day; in sun3_hwclk()
56 t->tm_year = todintersil->year + 68; in sun3_hwclk()
57 t->tm_wday = todintersil->weekday; in sun3_hwclk()