svn commit: r223449 - head/sys/dev/acpica
Jung-uk Kim
jkim at FreeBSD.org
Wed Jun 22 22:56:43 UTC 2011
Author: jkim
Date: Wed Jun 22 22:56:42 2011
New Revision: 223449
URL: http://svn.freebsd.org/changeset/base/223449
Log:
Fix build on ia64 after r223426.
Modified:
head/sys/dev/acpica/acpi_cpu.c
Modified: head/sys/dev/acpica/acpi_cpu.c
==============================================================================
--- head/sys/dev/acpica/acpi_cpu.c Wed Jun 22 22:55:51 2011 (r223448)
+++ head/sys/dev/acpica/acpi_cpu.c Wed Jun 22 22:56:42 2011 (r223449)
@@ -856,8 +856,10 @@ acpi_cpu_cx_list(struct acpi_cpu_softc *
sbuf_printf(&sb, "C%d/%d ", i + 1, sc->cpu_cx_states[i].trans_lat);
if (sc->cpu_cx_states[i].type < ACPI_STATE_C3)
sc->cpu_non_c3 = i;
+#ifndef __ia64__
else
cpu_can_deep_sleep = 1;
+#endif
}
sbuf_trim(&sb);
sbuf_finish(&sb);
More information about the svn-src-all
mailing list