aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/dev/acpica
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2025-01-03 22:42:12 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2025-01-03 22:42:12 +0000
commit1a259ad4ab5b3f1e5486b7bde7b404daf7d7cb9e (patch)
tree6c176b7348b8a942b766c1180b224ae06cb6e151 /sys/contrib/dev/acpica
parent92f570c32e9b9b9b4db9b6921c4ab79be686a498 (diff)
parentae8106ed3aecee3e160f5b0a67b3cf0b500b3723 (diff)
acpica: Merge ACPICA 20240927
Diffstat (limited to 'sys/contrib/dev/acpica')
-rw-r--r--sys/contrib/dev/acpica/changes.txt13
-rw-r--r--sys/contrib/dev/acpica/common/dmtbdump3.c2
-rw-r--r--sys/contrib/dev/acpica/include/acpixf.h2
3 files changed, 15 insertions, 2 deletions
diff --git a/sys/contrib/dev/acpica/changes.txt b/sys/contrib/dev/acpica/changes.txt
index b7bd376893c3..240a7234ab51 100644
--- a/sys/contrib/dev/acpica/changes.txt
+++ b/sys/contrib/dev/acpica/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/sys/contrib/dev/acpica/common/dmtbdump3.c b/sys/contrib/dev/acpica/common/dmtbdump3.c
index 80c2424cec94..c162c4c004f7 100644
--- a/sys/contrib/dev/acpica/common/dmtbdump3.c
+++ b/sys/contrib/dev/acpica/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/sys/contrib/dev/acpica/include/acpixf.h b/sys/contrib/dev/acpica/include/acpixf.h
index bdd5ed473ca7..ecc3116c2504 100644
--- a/sys/contrib/dev/acpica/include/acpixf.h
+++ b/sys/contrib/dev/acpica/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 <contrib/dev/acpica/include/acconfig.h>
#include <contrib/dev/acpica/include/actypes.h>