diff options
author | jkim <jkim@FreeBSD.org> | 2010-04-02 23:04:31 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2010-04-02 23:04:31 +0000 |
commit | c22943d966183aab0b1bfca1f741ae7587c0002e (patch) | |
tree | 6ff0f37946d2a209317eb79265f81066521bd4b8 /sys/contrib/dev/acpica/parser | |
parent | bb4566312b32efc10475f0ef7b34bf3427a25225 (diff) | |
download | FreeBSD-src-c22943d966183aab0b1bfca1f741ae7587c0002e.zip FreeBSD-src-c22943d966183aab0b1bfca1f741ae7587c0002e.tar.gz |
Merge ACPICA 20100331 (and four additional upstream patches).
Diffstat (limited to 'sys/contrib/dev/acpica/parser')
-rw-r--r-- | sys/contrib/dev/acpica/parser/psxface.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/contrib/dev/acpica/parser/psxface.c b/sys/contrib/dev/acpica/parser/psxface.c index e9fc45d..52a53c9 100644 --- a/sys/contrib/dev/acpica/parser/psxface.c +++ b/sys/contrib/dev/acpica/parser/psxface.c @@ -120,6 +120,7 @@ #include <contrib/dev/acpica/include/acparser.h> #include <contrib/dev/acpica/include/acdispat.h> #include <contrib/dev/acpica/include/acinterp.h> +#include <contrib/dev/acpica/include/actables.h> #include <contrib/dev/acpica/include/amlcode.h> @@ -334,6 +335,10 @@ AcpiPsExecuteMethod ( ACPI_FUNCTION_TRACE (PsExecuteMethod); + /* Quick validation of DSDT header */ + + AcpiTbCheckDsdtHeader (); + /* Validate the Info and method Node */ if (!Info || !Info->ResolvedNode) |