summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2003-07-14 02:42:15 +0000
committermarcel <marcel@FreeBSD.org>2003-07-14 02:42:15 +0000
commit17391f77a30e81fdb11336f6a82f998730f9610f (patch)
tree1a6b473eb3c87e66c8f8252bb941b9783328eef9
parent0af8d74af0dc1e66f2253e474e6ed4e49527bac2 (diff)
downloadFreeBSD-src-17391f77a30e81fdb11336f6a82f998730f9610f.zip
FreeBSD-src-17391f77a30e81fdb11336f6a82f998730f9610f.tar.gz
Fix build breakage on ia64. The second argument of AcpiOsReadable()
and AcpiOsWritable() have type ACPI_SIZE and not UINT32.
-rw-r--r--sys/dev/acpica/Osd/OsdMemory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpica/Osd/OsdMemory.c b/sys/dev/acpica/Osd/OsdMemory.c
index 95d84fb..8fe1a44 100644
--- a/sys/dev/acpica/Osd/OsdMemory.c
+++ b/sys/dev/acpica/Osd/OsdMemory.c
@@ -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);
}
OpenPOWER on IntegriCloud