mirror of
https://github.com/opnsense/src.git
synced 2026-06-14 19:20:18 -04:00
AcpiOsCallocate is no longer required.
This commit is contained in:
parent
72e5754cfb
commit
9232a543e6
1 changed files with 0 additions and 11 deletions
|
|
@ -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 a new issue