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
This commit is contained in:
Mark Santcroos 2004-12-02 00:05:02 +00:00
parent c846686064
commit f42941d3ec
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/vendor-sys/acpica/dist/; revision=138296

View file

@ -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
}