Home
last modified time | relevance | path

Searched refs:tod_data (Results 1 – 2 of 2) sorted by relevance

/arch/parisc/include/asm/
Drtc.h49 struct pdc_tod tod_data; in get_rtc_time() local
54 if (pdc_tod_read(&tod_data) < 0) in get_rtc_time()
63 days = tod_data.tod_sec / SECS_PER_DAY; in get_rtc_time()
64 rem = tod_data.tod_sec % SECS_PER_DAY; in get_rtc_time()
/arch/parisc/kernel/
Dtime.c238 static struct pdc_tod tod_data; in read_persistent_clock() local
239 if (pdc_tod_read(&tod_data) == 0) { in read_persistent_clock()
240 ts->tv_sec = tod_data.tod_sec; in read_persistent_clock()
241 ts->tv_nsec = tod_data.tod_usec * 1000; in read_persistent_clock()