Date: Mon, 21 Jun 2010 20:27:32 +0000 (UTC) From: Alexander Motin <mav@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r209402 - head/sys/dev/acpica Message-ID: <201006212027.o5LKRWGu028630@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mav Date: Mon Jun 21 20:27:32 2010 New Revision: 209402 URL: http://svn.freebsd.org/changeset/base/209402 Log: Fix ia64 build broken by r209371. ia64, same as amd64 has ACPI and always has APIC. Submitted by: jhb@ Modified: head/sys/dev/acpica/acpi_hpet.c Modified: head/sys/dev/acpica/acpi_hpet.c ============================================================================== --- head/sys/dev/acpica/acpi_hpet.c Mon Jun 21 19:53:47 2010 (r209401) +++ head/sys/dev/acpica/acpi_hpet.c Mon Jun 21 20:27:32 2010 (r209402) @@ -28,7 +28,7 @@ __FBSDID("$FreeBSD$"); #include "opt_acpi.h" -#ifdef __amd64__ +#if defined(__amd64__) || defined(__ia64__) #define DEV_APIC #else #include "opt_apic.h"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201006212027.o5LKRWGu028630>