Fix build breakage on ia64. The second argument of AcpiOsReadable()

and AcpiOsWritable() have type ACPI_SIZE and not UINT32.
This commit is contained in:
Marcel Moolenaar 2003-07-14 02:42:15 +00:00
parent 17fe3d1d42
commit 6613111b55

View File

@ -80,13 +80,13 @@ AcpiOsGetPhysicalAddress(void *LogicalAddress, ACPI_PHYSICAL_ADDRESS *PhysicalAd
* that callers will not pass garbage to us.
*/
BOOLEAN
AcpiOsReadable (void *Pointer, UINT32 Length)
AcpiOsReadable (void *Pointer, ACPI_SIZE Length)
{
return(TRUE);
}
BOOLEAN
AcpiOsWritable (void *Pointer, UINT32 Length)
AcpiOsWritable (void *Pointer, ACPI_SIZE Length)
{
return(TRUE);
}