From 6613111b558f3d060a0540513f6c187f1318dbe2 Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Mon, 14 Jul 2003 02:42:15 +0000 Subject: [PATCH] Fix build breakage on ia64. The second argument of AcpiOsReadable() and AcpiOsWritable() have type ACPI_SIZE and not UINT32. --- sys/dev/acpica/Osd/OsdMemory.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/acpica/Osd/OsdMemory.c b/sys/dev/acpica/Osd/OsdMemory.c index 95d84fb771b2..8fe1a4451e5d 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); }