Import ACPICA 20240927

This commit is contained in:
Jung-uk Kim 2025-01-03 16:51:31 -05:00
parent e690145f81
commit ae8106ed3a
3 changed files with 15 additions and 2 deletions

View file

@ -1,3 +1,16 @@
----------------------------------------
27 September 2024. Summary of changes for version 20240927:
Major changes:
Fix the acpixf.h file which caused issues for the last release (before this) 20240827
Fix the pointer offset for the SLIC table
Verify the local environment and GitHub commits are all in sync which was a problem with the second from last release (before this)20240322 (aka 20240323 date issue)
----------------------------------------
27 August 2024. Summary of changes for version 20240827:

View file

@ -178,7 +178,7 @@ AcpiDmDumpSlic (
{
(void) AcpiDmDumpTable (Table->Length, sizeof (ACPI_TABLE_HEADER),
(void *) (Table + sizeof (*Table)),
(void *) ((UINT8 *)Table + sizeof (*Table)),
Table->Length - sizeof (*Table), AcpiDmTableInfoSlic);
}

View file

@ -154,7 +154,7 @@
/* Current ACPICA subsystem version in YYYYMMDD format */
#define ACPI_CA_VERSION 0x20240827
#define ACPI_CA_VERSION 0x20240927
#include "acconfig.h"
#include "actypes.h"