[ACPICA] Update to version 20190405. CORE-15926

This commit is contained in:
Thomas Faber 2019-04-06 15:21:35 +02:00
parent 5563525ad4
commit 89a587169b
No known key found for this signature in database
GPG key ID: 076E7C3D44720826
3 changed files with 14 additions and 1 deletions

View file

@ -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);

View file

@ -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"

View file

@ -124,6 +124,11 @@ AcpiNsDeleteNode (
ACPI_FUNCTION_NAME (NsDeleteNode);
if (!Node)
{
return_VOID;
}
/* Detach an object if there is one */
AcpiNsDetachObject (Node);