mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Import ACPICA 20240927
This commit is contained in:
parent
e690145f81
commit
ae8106ed3a
3 changed files with 15 additions and 2 deletions
13
changes.txt
13
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:
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue