diff options
Diffstat (limited to 'source/components/utilities/utmisc.c')
| -rw-r--r-- | source/components/utilities/utmisc.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/source/components/utilities/utmisc.c b/source/components/utilities/utmisc.c index acc048d665de..466e3fa26c20 100644 --- a/source/components/utilities/utmisc.c +++ b/source/components/utilities/utmisc.c @@ -214,10 +214,10 @@ AcpiUtIsAmlTable (      /* These are the only tables that contain executable AML */ -    if (ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_DSDT) || -        ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_PSDT) || -        ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_SSDT) || -        ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_OSDT) || +    if (ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_DSDT) || +        ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_PSDT) || +        ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_SSDT) || +        ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_OSDT) ||          ACPI_IS_OEM_SIG (Table->Signature))      {          return (TRUE);  | 
