Date: Mon, 6 Oct 2014 18:11:05 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r272666 - head/sys/x86/x86 Message-ID: <201410061811.s96IB5rL022177@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Mon Oct 6 18:11:05 2014 New Revision: 272666 URL: https://svnweb.freebsd.org/changeset/base/272666 Log: Fix build for i386 kernels with out 'I686_CPU'. PR: 193660 Submitted by: holger@freyther.de Modified: head/sys/x86/x86/local_apic.c Modified: head/sys/x86/x86/local_apic.c ============================================================================== --- head/sys/x86/x86/local_apic.c Mon Oct 6 17:27:49 2014 (r272665) +++ head/sys/x86/x86/local_apic.c Mon Oct 6 18:11:05 2014 (r272666) @@ -1366,7 +1366,7 @@ apic_init(void *dummy __unused) printf("APIC: Using the %s enumerator.\n", best_enum->apic_name); -#ifndef __amd64__ +#ifdef I686_CPU /* * To work around an errata, we disable the local APIC on some * CPUs during early startup. We need to turn the local APIC back
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410061811.s96IB5rL022177>