summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>2002-02-23 05:32:10 +0000
committermsmith <msmith@FreeBSD.org>2002-02-23 05:32:10 +0000
commit298fdbbdac43b7d0e4bbf96ae0ca7c2f0a53c710 (patch)
tree388d7b83e662af385ddb2c2947d7f87e1016aabe
parent2fc99bc1ee3be529d07a40af787eeb806cd087f4 (diff)
downloadFreeBSD-src-298fdbbdac43b7d0e4bbf96ae0ca7c2f0a53c710.zip
FreeBSD-src-298fdbbdac43b7d0e4bbf96ae0ca7c2f0a53c710.tar.gz
AcpiOsCallocate is no longer required.
-rw-r--r--sys/dev/acpica/Osd/OsdMemory.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/sys/dev/acpica/Osd/OsdMemory.c b/sys/dev/acpica/Osd/OsdMemory.c
index f9e3517..f43ae4d 100644
--- a/sys/dev/acpica/Osd/OsdMemory.c
+++ b/sys/dev/acpica/Osd/OsdMemory.c
@@ -47,17 +47,6 @@ AcpiOsAllocate(UINT32 Size)
return(malloc(Size, M_ACPICA, M_NOWAIT));
}
-void *
-AcpiOsCallocate (UINT32 Size)
-{
- void *alloc;
-
- alloc = malloc(Size, M_ACPICA, M_NOWAIT);
- if (alloc != NULL)
- bzero(alloc, Size);
- return(alloc);
-}
-
void
AcpiOsFree (void *Memory)
{
OpenPOWER on IntegriCloud