mirror of
https://github.com/reactos/reactos.git
synced 2024-11-27 13:33:32 +08:00
[ACPICA] Update to version 20190405. CORE-15926
This commit is contained in:
parent
5563525ad4
commit
89a587169b
@ -132,6 +132,14 @@ AcpiEvEnableGpe (
|
||||
ACPI_FUNCTION_TRACE (EvEnableGpe);
|
||||
|
||||
|
||||
/* Clear the GPE (of stale events) */
|
||||
|
||||
Status = AcpiHwClearGpe(GpeEventInfo);
|
||||
if (ACPI_FAILURE(Status))
|
||||
{
|
||||
return_ACPI_STATUS(Status);
|
||||
}
|
||||
|
||||
/* Enable the requested GPE */
|
||||
|
||||
Status = AcpiHwLowSetGpe (GpeEventInfo, ACPI_GPE_ENABLE);
|
||||
|
@ -46,7 +46,7 @@
|
||||
|
||||
/* Current ACPICA subsystem version in YYYYMMDD format */
|
||||
|
||||
#define ACPI_CA_VERSION 0x20190329
|
||||
#define ACPI_CA_VERSION 0x20190405
|
||||
|
||||
#include "acconfig.h"
|
||||
#include "actypes.h"
|
||||
|
@ -124,6 +124,11 @@ AcpiNsDeleteNode (
|
||||
ACPI_FUNCTION_NAME (NsDeleteNode);
|
||||
|
||||
|
||||
if (!Node)
|
||||
{
|
||||
return_VOID;
|
||||
}
|
||||
|
||||
/* Detach an object if there is one */
|
||||
|
||||
AcpiNsDetachObject (Node);
|
||||
|
Loading…
Reference in New Issue
Block a user