Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 20 Jul 2002 20:20:22 -0700 (PDT)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 14567 for review
Message-ID:  <200207210320.g6L3KMk6067986@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=14567

Change 14567 by peter@peter_ia64 on 2002/07/20 20:19:52

	report when we hit an ACPI2.0 table. (hack)

Affected files ...

.. //depot/projects/ia64/sys/ia64/acpica/OsdEnvironment.c#3 edit

Differences ...

==== //depot/projects/ia64/sys/ia64/acpica/OsdEnvironment.c#3 (text+ko) ====

@@ -55,11 +55,19 @@
 {
 
 	if (ia64_efi_acpi20_table) {
+printf("ACPI 2.0 table at %p\n", ia64_efi_acpi20_table);
+	}
+	if (ia64_efi_acpi_table) {
+printf("ACPI 1.x table at %p\n", ia64_efi_acpi_table);
+	}
+	if (ia64_efi_acpi20_table) {
+printf("Using ACPI2.0 table\n");
 		RsdpAddress->PointerType = ACPI_PHYSICAL_POINTER;
 		RsdpAddress->Pointer.Physical = ia64_efi_acpi20_table;
 
 	}
 	else if (ia64_efi_acpi_table) {
+printf("Using ACPI1.x table\n");
 		RsdpAddress->PointerType = ACPI_PHYSICAL_POINTER;
 		RsdpAddress->Pointer.Physical = ia64_efi_acpi_table;
 	}

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200207210320.g6L3KMk6067986>