AcpiOsCallocate is no longer required.

This commit is contained in:
msmith 2002-02-23 05:32:10 +00:00
parent 2fc99bc1ee
commit 298fdbbdac

View File

@ -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)
{