* acpica: ACPICA: Update version to 20200528 ACPICA: iASL: add new OperationRegion subtype keyword PlatformRtMechanism ACPICA: acpidump: Removed dead code from oslinuxtbl.c
···12121313/* Current ACPICA subsystem version in YYYYMMDD format */14141515-#define ACPI_CA_VERSION 0x202004301515+#define ACPI_CA_VERSION 0x2020052816161717#include <acpi/acconfig.h>1818#include <acpi/actypes.h>
···3535static acpi_status3636osl_read_table_from_file(char *filename,3737 acpi_size file_offset,3838- char *signature, struct acpi_table_header **table);3838+ struct acpi_table_header **table);39394040static acpi_status4141osl_map_table(acpi_size address,···11841184 *11851185 * PARAMETERS: filename - File that contains the desired table11861186 * file_offset - Offset of the table in file11871187- * signature - Optional ACPI Signature for desired table.11881188- * A null terminated 4-character string.11891187 * table - Where a pointer to the table is returned11901188 *11911189 * RETURN: Status; Table buffer is returned if AE_OK.···11951197static acpi_status11961198osl_read_table_from_file(char *filename,11971199 acpi_size file_offset,11981198- char *signature, struct acpi_table_header **table)12001200+ struct acpi_table_header **table)11991201{12001202 FILE *table_file;12011203 struct acpi_table_header header;···12231225 goto exit;12241226 }1225122712281228+#ifdef ACPI_OBSOLETE_FUNCTIONS12291229+12261230 /* If signature is specified, it must match the table */1227123112281232 if (signature) {···12441244 goto exit;12451245 }12461246 }12471247+#endif1247124812481249 table_length = ap_get_table_length(&header);12491250 if (table_length == 0) {···13671366 /* There is no physical address saved for customized tables, use zero */1368136713691368 *address = 0;13701370- status = osl_read_table_from_file(table_filename, 0, NULL, table);13691369+ status = osl_read_table_from_file(table_filename, 0, table);1371137013721371 return (status);13731372}