diff options
author | njl <njl@FreeBSD.org> | 2003-08-12 04:56:45 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2003-08-12 04:56:45 +0000 |
commit | 8ee2083a45d902f399603bc6df52aef0dc32fccb (patch) | |
tree | d72b252113ed89d2053606524ec3b1de6e22e7ef /sys/contrib | |
parent | 29847d4b884915e80262e4b62ca3b0dd7428d38b (diff) | |
download | FreeBSD-src-8ee2083a45d902f399603bc6df52aef0dc32fccb.zip FreeBSD-src-8ee2083a45d902f399603bc6df52aef0dc32fccb.tar.gz |
Fix a few more s/UINT32/ACPI_SIZE issues. iasl and acpidb now build on
ia64.
Tested on: pluto2
Pointed out by: tinderbox
Diffstat (limited to 'sys/contrib')
-rw-r--r-- | sys/contrib/dev/acpica/osunixxf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/contrib/dev/acpica/osunixxf.c b/sys/contrib/dev/acpica/osunixxf.c index 993eb5f..0e8e26b 100644 --- a/sys/contrib/dev/acpica/osunixxf.c +++ b/sys/contrib/dev/acpica/osunixxf.c @@ -478,7 +478,7 @@ AcpiOsMapMemory ( void AcpiOsUnmapMemory ( void *where, - UINT32 length) + ACPI_SIZE length) { return; @@ -499,7 +499,7 @@ AcpiOsUnmapMemory ( void * AcpiOsAllocate ( - UINT32 size) + ACPI_SIZE size) { void *Mem; |