From: Karel Zak Date: Tue, 13 Jan 2015 12:47:48 +0000 (+0100) Subject: hwclock: exclude also i386 from CMOS auto-probing X-Git-Tag: v2.26-rc1~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c50f026120e27cb7144fa2b8b6c38b2555168ed;p=thirdparty%2Futil-linux.git hwclock: exclude also i386 from CMOS auto-probing --- diff --git a/sys-utils/hwclock.c b/sys-utils/hwclock.c index 88d1e3c9bb..ca61a917dd 100644 --- a/sys-utils/hwclock.c +++ b/sys-utils/hwclock.c @@ -1243,9 +1243,9 @@ static void determine_clock_access_method(const bool user_requests_ISA) ur = probe_for_rtc_clock(); #endif -#if defined(__i386__) || defined(__alpha__) - /* CMOS is also available for x86_64, but we don't check it automatically, - * --directisa has to be excplicitly specified */ +#if defined(__alpha__) + /* CMOS is also available for x86_64 and i386, but we don't check it + * automatically,* --directisa has to be excplicitly specified */ if (!ur && !user_requests_ISA) ur = probe_for_cmos_clock(); #endif