PERFORCE change 34456 for review

Marcel Moolenaar marcel at FreeBSD.org
Sun Jul 13 17:05:00 PDT 2003


http://perforce.freebsd.org/chv.cgi?CH=34456

Change 34456 by marcel at marcel_nfs on 2003/07/13 17:04:45

	Fix ACPI compilation breakage. AcpiOsReadable() and AcpiOsWritable()
	now take ACPI_SIZE as the second argument, not UINT32.

Affected files ...

.. //depot/projects/ia64/sys/dev/acpica/Osd/OsdMemory.c#9 edit

Differences ...

==== //depot/projects/ia64/sys/dev/acpica/Osd/OsdMemory.c#9 (text+ko) ====

@@ -80,13 +80,13 @@
  * 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);
 }


More information about the p4-projects mailing list