diff options
Diffstat (limited to 'source/components/tables/tbinstal.c')
| -rw-r--r-- | source/components/tables/tbinstal.c | 9 | 
1 files changed, 2 insertions, 7 deletions
| diff --git a/source/components/tables/tbinstal.c b/source/components/tables/tbinstal.c index e480749a23a8..ecbf25686231 100644 --- a/source/components/tables/tbinstal.c +++ b/source/components/tables/tbinstal.c @@ -93,14 +93,9 @@ AcpiTbVerifyTable (          }      } -    /* FACS is the odd table, has no standard ACPI header and no checksum */ +    /* Always calculate checksum, ignore bad checksum if requested */ -    if (!ACPI_COMPARE_NAME (&TableDesc->Signature, ACPI_SIG_FACS)) -    { -        /* Always calculate checksum, ignore bad checksum if requested */ - -        Status = AcpiTbVerifyChecksum (TableDesc->Pointer, TableDesc->Length); -    } +    Status = AcpiTbVerifyChecksum (TableDesc->Pointer, TableDesc->Length);      return_ACPI_STATUS (Status);  } | 
