From ae8106ed3aecee3e160f5b0a67b3cf0b500b3723 Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Fri, 3 Jan 2025 16:51:31 -0500 Subject: [PATCH] Import ACPICA 20240927 --- changes.txt | 13 +++++++++++++ source/common/dmtbdump3.c | 2 +- source/include/acpixf.h | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/changes.txt b/changes.txt index b7bd376893c..240a7234ab5 100644 --- a/changes.txt +++ b/changes.txt @@ -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: diff --git a/source/common/dmtbdump3.c b/source/common/dmtbdump3.c index 9a5b5ecd54d..1eddc391c6b 100644 --- a/source/common/dmtbdump3.c +++ b/source/common/dmtbdump3.c @@ -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); } diff --git a/source/include/acpixf.h b/source/include/acpixf.h index 53d56a95b65..7590ee6c9fc 100644 --- a/source/include/acpixf.h +++ b/source/include/acpixf.h @@ -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"