diff options
Diffstat (limited to 'debugger/dbfileio.c')
-rw-r--r-- | debugger/dbfileio.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/debugger/dbfileio.c b/debugger/dbfileio.c index 8d0ef0aaa8912..7854de37bdd28 100644 --- a/debugger/dbfileio.c +++ b/debugger/dbfileio.c @@ -271,10 +271,11 @@ AcpiDbReadTable ( fseek (fp, 0, SEEK_SET); - /* The RSDT and FACS tables do not have standard ACPI headers */ + /* The RSDT, FACS and S3PT tables do not have standard ACPI headers */ if (ACPI_COMPARE_NAME (TableHeader.Signature, "RSD ") || - ACPI_COMPARE_NAME (TableHeader.Signature, "FACS")) + ACPI_COMPARE_NAME (TableHeader.Signature, "FACS") || + ACPI_COMPARE_NAME (TableHeader.Signature, "S3PT")) { *TableLength = FileSize; StandardHeader = FALSE; |