Lines Matching refs:tm
1216 struct rtc_time tm; in rtc_proc_show() local
1227 rtc_get_rtc_time(&tm); in rtc_proc_show()
1237 tm.tm_hour, tm.tm_min, tm.tm_sec, in rtc_proc_show()
1238 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, epoch); in rtc_proc_show()
1240 get_rtc_alm_time(&tm); in rtc_proc_show()
1248 if (tm.tm_hour <= 24) in rtc_proc_show()
1249 seq_printf(seq, "%02d:", tm.tm_hour); in rtc_proc_show()
1253 if (tm.tm_min <= 59) in rtc_proc_show()
1254 seq_printf(seq, "%02d:", tm.tm_min); in rtc_proc_show()
1258 if (tm.tm_sec <= 59) in rtc_proc_show()
1259 seq_printf(seq, "%02d\n", tm.tm_sec); in rtc_proc_show()