summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaresh Bhat <naresh.bhat@linaro.org>2014-03-19 13:10:41 +0530
committerGraeme Gregory <graeme.gregory@linaro.org>2014-04-29 11:03:30 +0100
commita51f26a30b437b55167bb6ae9f0f3f0cda71cdc4 (patch)
tree81d0962b70cc0996af8fafc7150ee2b4317a12fa
parentfa000f47821eeffae78b3b40044006a4ed9f4888 (diff)
DBG2: Add DBG2 table compilation support.
Add DBG2 table compilation support. Signed-off-by: Naresh Bhat <naresh.bhat@linaro.org> Acked-by: Al Stone <al.stone@linaro.org>
-rw-r--r--tools/common/check_aml.c1
-rw-r--r--tools/common/include/check_aml.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/tools/common/check_aml.c b/tools/common/check_aml.c
index 7e0fe59..d1322d6 100644
--- a/tools/common/check_aml.c
+++ b/tools/common/check_aml.c
@@ -69,6 +69,7 @@ struct known_table_info known_info[] = {
{ SIG_SSDT, 2 },
{ SIG_UEFI, 1 },
{ SIG_XSDT, 1 },
+ { SIG_DBG2, 1 },
{ NULL, 0 }
};
diff --git a/tools/common/include/check_aml.h b/tools/common/include/check_aml.h
index c1e1272..2431cf9 100644
--- a/tools/common/include/check_aml.h
+++ b/tools/common/include/check_aml.h
@@ -90,6 +90,7 @@
#define SIG_SSDT "SSDT"
#define SIG_UEFI "UEFI"
#define SIG_XSDT "XSDT"
+#define SIG_DBG2 "DBG2"
struct known_table_info {
char *signature; /* table signature */