svn commit: r209402 - head/sys/dev/acpica

Alexander Motin mav at FreeBSD.org
Mon Jun 21 20:27:32 UTC 2010


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"


More information about the svn-src-head mailing list