diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2019-04-12 09:59:56 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2019-04-12 09:59:56 +0200 |
commit | f456277ee15ff5d150191cb4a2f0181a8804c851 (patch) | |
tree | f8df5107185f42225fe7545702a9a5542e853449 /drivers/acpi/tables.c | |
parent | c5781ffbbd4f742a58263458145fe7f0ac01d9e0 (diff) | |
parent | 6c6a828f86d67c157c7a2b26d46ebca0ed0d9c47 (diff) |
Merge back ACPICA changes for v5.2.
Diffstat (limited to 'drivers/acpi/tables.c')
-rw-r--r-- | drivers/acpi/tables.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c index 8fccbe49612a..1ffd7b9eefc5 100644 --- a/drivers/acpi/tables.c +++ b/drivers/acpi/tables.c @@ -670,8 +670,8 @@ static void __init acpi_table_initrd_scan(void) table_length = table->length; /* Skip RSDT/XSDT which should only be used for override */ - if (ACPI_COMPARE_NAME(table->signature, ACPI_SIG_RSDT) || - ACPI_COMPARE_NAME(table->signature, ACPI_SIG_XSDT)) { + if (ACPI_COMPARE_NAMESEG(table->signature, ACPI_SIG_RSDT) || + ACPI_COMPARE_NAMESEG(table->signature, ACPI_SIG_XSDT)) { acpi_os_unmap_memory(table, ACPI_HEADER_SIZE); goto next_table; } |