AcpiOsCallocate is no longer required.

This commit is contained in:
Mike Smith 2002-02-23 05:32:10 +00:00
parent 72e5754cfb
commit 9232a543e6

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