Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ACPICA: Remove the VRTC table

ACPICA commit 4534cc3700f73c88e2f6a0e0f0b9efe4fc644757

The VRTC table is no longer in use and is not defined by the ACPI
specification. Remove the table from the known, allowed tables.

Link: https://github.com/acpica/acpica/commit/4534cc37
Signed-off-by: Al Stone <ahs3@ahs3.net>
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Erik Kaneda <erik.kaneda@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Al Stone and committed by
Rafael J. Wysocki
9a5c7de7 9e300070

-23
-23
include/acpi/actbl3.h
··· 33 33 #define ACPI_SIG_TCPA "TCPA" /* Trusted Computing Platform Alliance table */ 34 34 #define ACPI_SIG_TPM2 "TPM2" /* Trusted Platform Module 2.0 H/W interface table */ 35 35 #define ACPI_SIG_UEFI "UEFI" /* Uefi Boot Optimization Table */ 36 - #define ACPI_SIG_VRTC "VRTC" /* Virtual Real Time Clock Table */ 37 36 #define ACPI_SIG_WAET "WAET" /* Windows ACPI Emulated devices Table */ 38 37 #define ACPI_SIG_WDAT "WDAT" /* Watchdog Action Table */ 39 38 #define ACPI_SIG_WDDT "WDDT" /* Watchdog Timer Description Table */ ··· 481 482 struct acpi_table_header header; /* Common ACPI table header */ 482 483 u8 identifier[16]; /* UUID identifier */ 483 484 u16 data_offset; /* Offset of remaining data in table */ 484 - }; 485 - 486 - /******************************************************************************* 487 - * 488 - * VRTC - Virtual Real Time Clock Table 489 - * Version 1 490 - * 491 - * Conforms to "Simple Firmware Interface Specification", 492 - * Draft 0.8.2, Oct 19, 2010 493 - * NOTE: The ACPI VRTC is equivalent to The SFI MRTC table. 494 - * 495 - ******************************************************************************/ 496 - 497 - struct acpi_table_vrtc { 498 - struct acpi_table_header header; /* Common ACPI table header */ 499 - }; 500 - 501 - /* VRTC entry */ 502 - 503 - struct acpi_vrtc_entry { 504 - struct acpi_generic_address physical_address; 505 - u32 irq; 506 485 }; 507 486 508 487 /*******************************************************************************