mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
Return AE_OK for stub functions returning ACPI_STATUS, not NULL
This commit is contained in:
parent
191c07211b
commit
7655ebdaaa
1 changed files with 2 additions and 2 deletions
|
|
@ -47,13 +47,13 @@ SYSCTL_ULONG(_machdep, OID_AUTO, acpi_root, CTLFLAG_RD, &ia64_acpi_root, 0,
|
|||
ACPI_STATUS
|
||||
AcpiOsInitialize(void)
|
||||
{
|
||||
return(NULL);
|
||||
return(AE_OK);
|
||||
}
|
||||
|
||||
ACPI_STATUS
|
||||
AcpiOsTerminate(void)
|
||||
{
|
||||
return(NULL);
|
||||
return(AE_OK);
|
||||
}
|
||||
|
||||
ACPI_STATUS
|
||||
|
|
|
|||
Loading…
Reference in a new issue