]> git.ipfire.org Git - thirdparty/chrony.git/commitdiff
rtc: simplify and move switch_interrupts()
authorMiroslav Lichvar <mlichvar@redhat.com>
Tue, 10 Dec 2019 16:40:44 +0000 (17:40 +0100)
committerMiroslav Lichvar <mlichvar@redhat.com>
Tue, 10 Dec 2019 16:03:15 +0000 (17:03 +0100)
rtc_linux.c

index e6fedd8c9bde4341f8102493deee9f619e103cdb..a88368b414132e5e9db52ef6e2dce679ac4fa432 100644 (file)
@@ -482,6 +482,20 @@ write_coefs_to_file(int valid,time_t ref_time,double offset,double rate)
   return RTC_ST_OK;
 }
 
+/* ================================================== */
+
+static void
+switch_interrupts(int on_off)
+{
+  if (ioctl(fd, on_off ? RTC_UIE_ON : RTC_UIE_OFF, 0) < 0) {
+    LOG(LOGS_ERR, "Could not %s RTC interrupt : %s",
+        on_off ? "enable" : "disable", strerror(errno));
+    return;
+  }
+
+  if (on_off)
+    skip_interrupts = 1;
+}
 
 /* ================================================== */
 /* file_name is the name of the file where we save the RTC params
@@ -558,29 +572,6 @@ RTC_Linux_Finalise(void)
 
 /* ================================================== */
 
-static void
-switch_interrupts(int onoff)
-{
-  int status;
-
-  if (onoff) {
-    status = ioctl(fd, RTC_UIE_ON, 0);
-    if (status < 0) {
-      LOG(LOGS_ERR, "Could not %s RTC interrupt : %s", "enable", strerror(errno));
-      return;
-    }
-    skip_interrupts = 1;
-  } else {
-    status = ioctl(fd, RTC_UIE_OFF, 0);
-    if (status < 0) {
-      LOG(LOGS_ERR, "Could not %s RTC interrupt : %s", "disable", strerror(errno));
-      return;
-    }
-  }
-}    
-
-/* ================================================== */
-
 static void
 measurement_timeout(void *any)
 {