Searched defs:RTC_SEC (Results 1 - 8 of 8) sorted by last modified time

/drivers/rtc/
H A Drtc-da9063.c35 #define RTC_SEC 0 macro
55 tm->tm_sec = data[RTC_SEC] & DA9063_COUNT_SEC_MASK;
67 data[RTC_SEC] &= ~DA9063_COUNT_SEC_MASK;
68 data[RTC_SEC] |= tm->tm_sec & DA9063_COUNT_SEC_MASK;
119 if (!(data[RTC_SEC] & DA9063_RTC_READ)) {
160 data[RTC_SEC] = 0;
280 rtc->data_start = RTC_SEC;
306 data[RTC_SEC] = 0;
H A Drtc-ds1511.c77 #define RTC_SEC DS1511_SEC macro
236 rtc_write(sec, RTC_SEC);
252 rtc_tm->tm_sec = rtc_read(RTC_SEC) & 0x7f;
H A Drtc-max77686.c45 RTC_SEC = 0, enumerator in enum:__anon4913
76 tm->tm_sec = data[RTC_SEC] & 0x7f;
97 data[RTC_SEC] = tm->tm_sec;
301 data[RTC_SEC] |= (1 << ALARM_ENABLE_SHIFT);
H A Drtc-max77802.c50 RTC_SEC = 0, enumerator in enum:__anon4914
81 tm->tm_sec = data[RTC_SEC] & 0xff;
103 data[RTC_SEC] = tm->tm_sec;
H A Drtc-max8907.c24 RTC_SEC = 0, enumerator in enum:__anon4915
78 tm->tm_sec = bcd2bin(regs[RTC_SEC] & 0x7f);
94 regs[RTC_SEC] = bin2bcd(tm->tm_sec);
H A Drtc-max8925.c20 RTC_SEC = 0, enumerator in enum:__anon4916
109 tm->tm_sec = ((buf[RTC_SEC] >> 4) & 0x7) * 10
110 + (buf[RTC_SEC] & 0x0f);
150 buf[RTC_SEC] = (high << 4) + low;
H A Drtc-max8997.c58 RTC_SEC = 0, enumerator in enum:__anon4917
81 tm->tm_sec = data[RTC_SEC] & 0x7f;
101 data[RTC_SEC] = tm->tm_sec;
273 data[RTC_SEC] |= (1 << ALARM_ENABLE_SHIFT);
308 data[RTC_HOUR], data[RTC_MIN], data[RTC_SEC]);
H A Drtc-max8998.c62 RTC_SEC = 0, enumerator in enum:__anon4918
83 tm->tm_sec = bcd2bin(data[RTC_SEC]);
101 data[RTC_SEC] = bin2bcd(tm->tm_sec);

Completed in 135 milliseconds