Deleted Added
sdiff udiff text old ( 229989 ) new ( 239340 )
full compact
1/******************************************************************************
2 *
3 * Name: actbl3.h - ACPI Table Definitions
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2012, Intel Corp.

--- 63 unchanged lines hidden (view full) ---

72#define ACPI_SIG_RASF "RASF" /* RAS Feature table */
73
74#define ACPI_SIG_S3PT "S3PT" /* S3 Performance (sub)Table */
75#define ACPI_SIG_PCCS "PCC" /* PCC Shared Memory Region */
76
77/* Reserved table signatures */
78
79#define ACPI_SIG_CSRT "CSRT" /* Core System Resources Table */
80#define ACPI_SIG_DBG2 "DBG2" /* Debug Port table 2 */
81#define ACPI_SIG_MATR "MATR" /* Memory Address Translation Table */
82#define ACPI_SIG_MSDM "MSDM" /* Microsoft Data Management Table */
83#define ACPI_SIG_WPBT "WPBT" /* Windows Platform Binary Table */
84
85/*
86 * All tables must be byte-packed to match the ACPI specification, since
87 * the tables are provided by the system BIOS.
88 */
89#pragma pack(1)
90
91/*
92 * Note about bitfields: The UINT8 type is used for bitfields in ACPI tables.
93 * This is the only type that is even remotely portable. Anything else is not
94 * portable, so do not use any other bitfield types.
95 */
96
97
98/*******************************************************************************
99 *
100 * BGRT - Boot Graphics Resource Table (ACPI 5.0)
101 * Version 1
102 *

--- 548 unchanged lines hidden ---