ACPI: io_common.c: call acpi_get_table to avoid using ACPI_SIG_DSDT
[firefly-linux-kernel-4.4.55.git] / arch / ia64 / sn / kernel / io_common.c
index 8a924a5661ddffff994bb59a74762b9f5bd5555a..e1917ede0d60b04fb0f4eadf72390e9014497bfd 100644 (file)
@@ -473,7 +473,7 @@ sn_io_early_init(void)
        {
                struct acpi_table_header *header = NULL;
 
-               acpi_get_table_by_index(ACPI_TABLE_INDEX_DSDT, &header);
+               acpi_get_table(ACPI_SIG_DSDT, 1, &header);
                BUG_ON(header == NULL);
                sn_acpi_rev = header->oem_revision;
        }
@@ -505,7 +505,7 @@ sn_io_early_init(void)
 
        {
                struct acpi_table_header *header;
-               (void)acpi_get_table_by_index(ACPI_TABLE_INDEX_DSDT, &header);
+               (void)acpi_get_table(ACPI_SIG_DSDT, 1, &header);
                printk(KERN_INFO "ACPI  DSDT OEM Rev 0x%x\n",
                        header->oem_revision);
        }