Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/rtc/
Drtc-rx8025.c31 #define RX8025_REG_HOUR 0x02 macro
200 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x3f); in rx8025_get_time()
202 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x1f) % 12 in rx8025_get_time()
203 + (date[RX8025_REG_HOUR] & 0x20 ? 12 : 0); in rx8025_get_time()
232 date[RX8025_REG_HOUR] = bin2bcd(dt->tm_hour); in rx8025_set_time()
234 date[RX8025_REG_HOUR] = (dt->tm_hour >= 12 ? 0x20 : 0) in rx8025_set_time()