AcpiOsCallocate is no longer required.
This commit is contained in:
parent
2fc99bc1ee
commit
298fdbbdac
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user