Lines Matching defs:date
73 unsigned char date[7];
79 * time and date then re-read the "update flag". If the update flag
89 "low voltage detected, date/time is not reliable.\n");
102 /* Now read time and date */
103 err = regmap_bulk_read(rx8581->regmap, RX8581_REG_SC, date,
104 sizeof(date));
117 date[0], date[1], date[2], date[3], date[4], date[5], date[6]);
119 tm->tm_sec = bcd2bin(date[RX8581_REG_SC] & 0x7F);
120 tm->tm_min = bcd2bin(date[RX8581_REG_MN] & 0x7F);
121 tm->tm_hour = bcd2bin(date[RX8581_REG_HR] & 0x3F); /* rtc hr 0-23 */
122 tm->tm_wday = ilog2(date[RX8581_REG_DW] & 0x7F);
123 tm->tm_mday = bcd2bin(date[RX8581_REG_DM] & 0x3F);
124 tm->tm_mon = bcd2bin(date[RX8581_REG_MO] & 0x1F) - 1; /* rtc mn 1-12 */
125 tm->tm_year = bcd2bin(date[RX8581_REG_YR]) + 100;