]> err.no Git - util-linux/commitdiff
hwclock: remove x86_64-specific bogon
authorDavid Brownell <dbrownell@users.sourceforge.net>
Tue, 12 Aug 2008 10:13:52 +0000 (03:13 -0700)
committerKarel Zak <kzak@redhat.com>
Tue, 12 Aug 2008 10:50:11 +0000 (12:50 +0200)
I was puzzled why "hwclock" wrongly reported my x86_64 sytem didn't
support RTC update interrupts.  Bogus #ifdef, that's why ... added
by the 2.11y patch (from 2.11t).  Probably this whole #ifdef should
just vanish ... if the kernel rejects UIE_ON, the program ought to
just cope with it.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
hwclock/rtc.c

index 2acde81ef71c88b5d9ff3aaef1456b4b5f93847a..3eb1f4eb7637a6e69399b416b4db55ee7271dbc5 100644 (file)
@@ -225,7 +225,7 @@ int ret;
   } else {
     int rc;  /* Return code from ioctl */
     /* Turn on update interrupts (one per second) */
-#if defined(__alpha__) || defined(__sparc__) || defined(__x86_64__)
+#if defined(__alpha__) || defined(__sparc__)
     /* Not all alpha kernels reject RTC_UIE_ON, but probably they should. */
     rc = -1;
     errno = EINVAL;