Lines Matching refs:seconds
74 unsigned long seconds; in tps6586x_rtc_read_time() local
90 seconds = ticks >> 10; in tps6586x_rtc_read_time()
91 seconds += rtc->epoch_start; in tps6586x_rtc_read_time()
92 rtc_time_to_tm(seconds, tm); in tps6586x_rtc_read_time()
101 unsigned long seconds; in tps6586x_rtc_set_time() local
105 rtc_tm_to_time(tm, &seconds); in tps6586x_rtc_set_time()
106 if (seconds < rtc->epoch_start) { in tps6586x_rtc_set_time()
110 seconds -= rtc->epoch_start; in tps6586x_rtc_set_time()
112 ticks = (unsigned long long)seconds << 10; in tps6586x_rtc_set_time()
160 unsigned long seconds; in tps6586x_rtc_set_alarm() local
169 rtc_tm_to_time(&alrm->time, &seconds); in tps6586x_rtc_set_alarm()
171 if (alrm->enabled && (seconds < rtc->epoch_start)) { in tps6586x_rtc_set_alarm()
182 seconds -= rtc->epoch_start; in tps6586x_rtc_set_alarm()
196 if ((seconds - rtc_current_time) > ALM1_VALID_RANGE_IN_SEC) in tps6586x_rtc_set_alarm()
197 seconds = rtc_current_time - 1; in tps6586x_rtc_set_alarm()
199 ticks = (unsigned long long)seconds << 10; in tps6586x_rtc_set_alarm()
216 unsigned long seconds; in tps6586x_rtc_read_alarm() local
227 seconds = ticks >> 10; in tps6586x_rtc_read_alarm()
228 seconds += rtc->epoch_start; in tps6586x_rtc_read_alarm()
230 rtc_time_to_tm(seconds, &alrm->time); in tps6586x_rtc_read_alarm()