Date: Sun, 13 Jul 2003 17:04:57 -0700 (PDT) From: Marcel Moolenaar <marcel@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 34456 for review Message-ID: <200307140004.h6E04vbC002175@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=34456 Change 34456 by marcel@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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200307140004.h6E04vbC002175>