diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2025-01-03 21:49:36 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2025-01-03 21:49:36 +0000 |
| commit | e690145f81b961a622efa7bc04fd83caba2a769d (patch) | |
| tree | 4b8a893d9d971026929e9a8230c062ffe7a2b44a /source/common/dmtbdump.c | |
| parent | b6246dbb668a788f8022fc34f5577de42b386a0f (diff) | |
Import ACPICA 20240827vendor/acpica/20240827
Diffstat (limited to 'source/common/dmtbdump.c')
| -rw-r--r-- | source/common/dmtbdump.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source/common/dmtbdump.c b/source/common/dmtbdump.c index 2feb7644f931..a84dc98a47ea 100644 --- a/source/common/dmtbdump.c +++ b/source/common/dmtbdump.c @@ -562,7 +562,7 @@ AcpiDmDumpFadt ( /* Check for FADT revision 6 fields and up (ACPI 6.0+) */ - if (Table->Length > ACPI_FADT_V3_SIZE) + if (Table->Length > ACPI_FADT_V5_SIZE) { Status = AcpiDmDumpTable (Table->Length, 0, Table, 0, AcpiDmTableInfoFadt6); @@ -635,6 +635,11 @@ AcpiDmValidateFadtLength ( ExpectedLength = ACPI_FADT_V5_SIZE; break; + case 6: + + ExpectedLength = ACPI_FADT_V6_SIZE; + break; + default: return; |
