mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[ACPICA] Update to version 20200717. CORE-17170
This commit is contained in:
parent
c758d15d0a
commit
8605f660f4
7 changed files with 8 additions and 13 deletions
|
@ -543,10 +543,6 @@ AcpiExPrepFieldValue (
|
|||
}
|
||||
}
|
||||
|
||||
/* An additional reference for the container */
|
||||
|
||||
AcpiUtAddReference (ObjDesc->Field.RegionObj);
|
||||
|
||||
ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD,
|
||||
"RegionField: BitOff %X, Off %X, Gran %X, Region %p\n",
|
||||
ObjDesc->Field.StartFieldBitOffset,
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
|
||||
/* Current ACPICA subsystem version in YYYYMMDD format */
|
||||
|
||||
#define ACPI_CA_VERSION 0x20200528
|
||||
#define ACPI_CA_VERSION 0x20200717
|
||||
|
||||
#include "acconfig.h"
|
||||
#include "actypes.h"
|
||||
|
|
|
@ -1271,7 +1271,7 @@ typedef struct acpi_pnp_device_id_list
|
|||
{
|
||||
UINT32 Count; /* Number of IDs in Ids array */
|
||||
UINT32 ListSize; /* Size of list, including ID strings */
|
||||
ACPI_PNP_DEVICE_ID Ids[1]; /* ID array */
|
||||
ACPI_PNP_DEVICE_ID Ids[]; /* ID array */
|
||||
|
||||
} ACPI_PNP_DEVICE_ID_LIST;
|
||||
|
||||
|
|
|
@ -230,6 +230,9 @@
|
|||
/* warn C4131: uses old-style declarator (iASL compiler only) */
|
||||
#pragma warning(disable:4459)
|
||||
|
||||
/* warn c4200: allow flexible arrays (of zero length) */
|
||||
#pragma warning(disable:4200)
|
||||
|
||||
#if _MSC_VER > 1200 /* Versions above VC++ 6 */
|
||||
#pragma warning( disable : 4295 ) /* needed for acpredef.h array */
|
||||
#endif
|
||||
|
|
|
@ -641,11 +641,6 @@ AcpiUtUpdateObjectReference (
|
|||
NextObject = Object->BufferField.BufferObj;
|
||||
break;
|
||||
|
||||
case ACPI_TYPE_LOCAL_REGION_FIELD:
|
||||
|
||||
NextObject = Object->Field.RegionObj;
|
||||
break;
|
||||
|
||||
case ACPI_TYPE_LOCAL_BANK_FIELD:
|
||||
|
||||
NextObject = Object->BankField.BankObj;
|
||||
|
@ -681,6 +676,7 @@ AcpiUtUpdateObjectReference (
|
|||
}
|
||||
break;
|
||||
|
||||
case ACPI_TYPE_LOCAL_REGION_FIELD:
|
||||
case ACPI_TYPE_REGION:
|
||||
default:
|
||||
|
||||
|
|
|
@ -327,7 +327,7 @@ AcpiUtExecute_CID (
|
|||
* 3) Size of the actual CID strings
|
||||
*/
|
||||
CidListSize = sizeof (ACPI_PNP_DEVICE_ID_LIST) +
|
||||
((Count - 1) * sizeof (ACPI_PNP_DEVICE_ID)) +
|
||||
(Count * sizeof (ACPI_PNP_DEVICE_ID)) +
|
||||
StringAreaSize;
|
||||
|
||||
CidList = ACPI_ALLOCATE_ZEROED (CidListSize);
|
||||
|
|
|
@ -92,7 +92,7 @@ Used Version: 1.6.37
|
|||
Website: http://libpng.sourceforge.net/
|
||||
|
||||
Title: ACPICA
|
||||
Used Version: 20200528
|
||||
Used Version: 20200717
|
||||
Website: https://acpica.org/
|
||||
|
||||
Title: Schily Tools, mkisofs
|
||||
|
|
Loading…
Reference in a new issue