Searched refs:hp300_rtc_read (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/hp300/
H A Dconfig.c146 static inline unsigned char hp300_rtc_read(unsigned char reg) function
202 t->tm_sec = hp300_rtc_read(RTC_REG_SEC1) * 10 +
203 hp300_rtc_read(RTC_REG_SEC2);
204 t->tm_min = hp300_rtc_read(RTC_REG_MIN1) * 10 +
205 hp300_rtc_read(RTC_REG_MIN2);
206 t->tm_hour = (hp300_rtc_read(RTC_REG_HOUR1) & 3) * 10 +
207 hp300_rtc_read(RTC_REG_HOUR2);
209 t->tm_mday = hp300_rtc_read(RTC_REG_DAY1) * 10 +
210 hp300_rtc_read(RTC_REG_DAY2);
211 t->tm_mon = hp300_rtc_read(RTC_REG_MON
[all...]

Completed in 75 milliseconds