diff options
author | Bob Moore <robert.moore@intel.com> | 2010-05-31 09:22:12 +0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-07-06 22:33:57 -0400 |
commit | 4461cf546ec8c97b6b997b8e533d6de1960499d3 (patch) | |
tree | 00d8a1c15aac35de41221fe8551aeb9e9cceb18b | |
parent | a9fc03125ea0001ff18bc29da9539b587fdbd1d7 (diff) | |
download | kernel_samsung_smdk4412-4461cf546ec8c97b6b997b8e533d6de1960499d3.zip kernel_samsung_smdk4412-4461cf546ec8c97b6b997b8e533d6de1960499d3.tar.gz kernel_samsung_smdk4412-4461cf546ec8c97b6b997b8e533d6de1960499d3.tar.bz2 |
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>
-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 95f4d0e..0a600b8 100644 --- a/include/acpi/actbl2.h +++ b/include/acpi/actbl2.h @@ -79,6 +79,15 @@ #define ACPI_SIG_WDAT "WDAT" /* Watchdog Action Table */ #define ACPI_SIG_WDRT "WDRT" /* Watchdog Resource Table */ +#ifdef ACPI_UNDEFINED_TABLES +/* + * These tables have been seen in the field, but no definition has been found + */ +#define ACPI_SIG_ATKG "ATKG" +#define ACPI_SIG_GSCI "GSCI" /* GMCH SCI table */ +#define ACPI_SIG_IEIT "IEIT" +#endif + /* * All tables must be byte-packed to match the ACPI specification, since * the tables are provided by the system BIOS. |