diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2025-01-03 21:51:31 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2025-01-03 21:51:31 +0000 |
commit | ae8106ed3aecee3e160f5b0a67b3cf0b500b3723 (patch) | |
tree | 9f0a4b0a7e682f201390678936581031a3962839 | |
parent | e690145f81b961a622efa7bc04fd83caba2a769d (diff) |
Import ACPICA 20240927vendor/acpica/20240927
-rw-r--r-- | changes.txt | 13 | ||||
-rw-r--r-- | source/common/dmtbdump3.c | 2 | ||||
-rw-r--r-- | source/include/acpixf.h | 2 |
3 files changed, 15 insertions, 2 deletions
diff --git a/changes.txt b/changes.txt index b7bd376893c3..240a7234ab51 100644 --- a/changes.txt +++ b/changes.txt @@ -1,4 +1,17 @@ ---------------------------------------- +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: Major changes: diff --git a/source/common/dmtbdump3.c b/source/common/dmtbdump3.c index 9a5b5ecd54d3..1eddc391c6b0 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 53d56a95b65e..7590ee6c9fca 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" |