Lines Matching defs:fd_rtc
33 int i, ret, fd_rtc, fd_pfsm[PMIC_NB] = { 0 };
38 fd_rtc = open(RTC_A, O_RDONLY);
39 if (fd_rtc < 0) {
53 ret = ioctl(fd_rtc, RTC_RD_TIME, &rtc_tm);
74 ret = ioctl(fd_rtc, RTC_ALM_SET, &rtc_tm);
81 ret = ioctl(fd_rtc, RTC_AIE_ON, 0);
104 ret = read(fd_rtc, &data, sizeof(unsigned long));
111 ioctl(fd_rtc, RTC_AIE_OFF, 0);
121 if (fd_rtc)
122 close(fd_rtc);