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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/rtc/
H A Drtc-rx8025.c33 #define RX8025_REG_HOUR 0x02 macro
209 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x3f);
211 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x1f) % 12
212 + (date[RX8025_REG_HOUR] & 0x20 ? 12 : 0);
246 date[RX8025_REG_HOUR] = bin2bcd(dt->tm_hour);
248 date[RX8025_REG_HOUR] = (dt->tm_hour >= 12 ? 0x20 : 0)

Completed in 54 milliseconds