Deleted Added
full compact
76a77
> #define ACPI_SIG_MTMR "MTMR" /* MID Timer table */
81a83
> #define ACPI_SIG_VRTC "VRTC" /* Virtual Real Time Clock Table */
985a988,1015
> * MTMR - MID Timer Table
> * Version 1
> *
> * Conforms to "Simple Firmware Interface Specification",
> * Draft 0.8.2, Oct 19, 2010
> * NOTE: The ACPI MTMR is equivalent to the SFI MTMR table.
> *
> ******************************************************************************/
>
> typedef struct acpi_table_mtmr
> {
> ACPI_TABLE_HEADER Header; /* Common ACPI table header */
>
> } ACPI_TABLE_MTMR;
>
> /* MTMR entry */
>
> typedef struct acpi_mtmr_entry
> {
> ACPI_GENERIC_ADDRESS PhysicalAddress;
> UINT32 Frequency;
> UINT32 Irq;
>
> } ACPI_MTMR_ENTRY;
>
>
> /*******************************************************************************
> *
1184a1215,1241
> * VRTC - Virtual Real Time Clock Table
> * Version 1
> *
> * Conforms to "Simple Firmware Interface Specification",
> * Draft 0.8.2, Oct 19, 2010
> * NOTE: The ACPI VRTC is equivalent to The SFI MRTC table.
> *
> ******************************************************************************/
>
> typedef struct acpi_table_vrtc
> {
> ACPI_TABLE_HEADER Header; /* Common ACPI table header */
>
> } ACPI_TABLE_VRTC;
>
> /* VRTC entry */
>
> typedef struct acpi_vrtc_entry
> {
> ACPI_GENERIC_ADDRESS PhysicalAddress;
> UINT32 Irq;
>
> } ACPI_VRTC_ENTRY;
>
>
> /*******************************************************************************
> *