From 128b57630de396f8c0ecb54313434d7c8beaa4cd Mon Sep 17 00:00:00 2001 From: marks <marks@FreeBSD.org> Date: Thu, 2 Dec 2004 00:05:02 +0000 Subject: [PATCH] Local change: Supporting code not yet available, use previous behavior instead for the time being. Intel should fix this. Note that if this commit is correct, it is made on the vendor branch. We expect the Intel folks to fix it, and we don't want to unnecessarily take files off the vendor branch. Approved by: njl MFC after: 1 week --- sys/contrib/dev/acpica/osunixxf.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/sys/contrib/dev/acpica/osunixxf.c b/sys/contrib/dev/acpica/osunixxf.c index f5ce08f8cac6..5c2b89ad21e1 100644 --- a/sys/contrib/dev/acpica/osunixxf.c +++ b/sys/contrib/dev/acpica/osunixxf.c @@ -185,7 +185,15 @@ AcpiOsGetRootPointer ( ACPI_POINTER *Address) { - return (AeLocalGetRootPointer(Flags, Address)); +#if 0 + /* The supporting code for this is not yet available. + * Return to the old situation for now. + */ + return (AeLocalGetRootPointer(Flags, (ACPI_PHYSICAL_ADDRESS *)Address)); +#else + return (AE_OK); +#endif + }