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

/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 50 milliseconds