diff options
author | Bob Moore <robert.moore@intel.com> | 2010-05-30 21:22:12 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-07-06 22:33:57 -0400 |
commit | 4461cf546ec8c97b6b997b8e533d6de1960499d3 (patch) | |
tree | 00d8a1c15aac35de41221fe8551aeb9e9cceb18b /include/acpi | |
parent | a9fc03125ea0001ff18bc29da9539b587fdbd1d7 (diff) |
ACPICA: Add signatures for undefined tables: ATKG, GSCI, IEIT
These ACPI tables have been seen in the field, but the actual
table definitions are unkown at this time.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/actbl2.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/acpi/actbl2.h b/include/acpi/actbl2.h index 95f4d0ef4819..0a600b8e53f4 100644 --- a/include/acpi/actbl2.h +++ b/include/acpi/actbl2.h | |||
@@ -79,6 +79,15 @@ | |||
79 | #define ACPI_SIG_WDAT "WDAT" /* Watchdog Action Table */ | 79 | #define ACPI_SIG_WDAT "WDAT" /* Watchdog Action Table */ |
80 | #define ACPI_SIG_WDRT "WDRT" /* Watchdog Resource Table */ | 80 | #define ACPI_SIG_WDRT "WDRT" /* Watchdog Resource Table */ |
81 | 81 | ||
82 | #ifdef ACPI_UNDEFINED_TABLES | ||
83 | /* | ||
84 | * These tables have been seen in the field, but no definition has been found | ||
85 | */ | ||
86 | #define ACPI_SIG_ATKG "ATKG" | ||
87 | #define ACPI_SIG_GSCI "GSCI" /* GMCH SCI table */ | ||
88 | #define ACPI_SIG_IEIT "IEIT" | ||
89 | #endif | ||
90 | |||
82 | /* | 91 | /* |
83 | * All tables must be byte-packed to match the ACPI specification, since | 92 | * All tables must be byte-packed to match the ACPI specification, since |
84 | * the tables are provided by the system BIOS. | 93 | * the tables are provided by the system BIOS. |