diff options
author | njl <njl@FreeBSD.org> | 2005-01-12 00:52:40 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2005-01-12 00:52:40 +0000 |
commit | 393451f28c4d66b7e120f44358bc1119c012fef3 (patch) | |
tree | 62fefe96f6d9b467ac7cee7e3a26bc791fe599ae /sys/contrib/dev/acpica/dsutils.c | |
parent | 791b211a0cdf45d441ca55f897408c6777ef8e67 (diff) | |
parent | d724817235abfea4d1628dfcc23d05cad5a87419 (diff) | |
download | FreeBSD-src-393451f28c4d66b7e120f44358bc1119c012fef3.zip FreeBSD-src-393451f28c4d66b7e120f44358bc1119c012fef3.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r140094,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'sys/contrib/dev/acpica/dsutils.c')
-rw-r--r-- | sys/contrib/dev/acpica/dsutils.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/contrib/dev/acpica/dsutils.c b/sys/contrib/dev/acpica/dsutils.c index f20fb39..13976b7 100644 --- a/sys/contrib/dev/acpica/dsutils.c +++ b/sys/contrib/dev/acpica/dsutils.c @@ -167,7 +167,8 @@ AcpiDsIsResultUsed ( * An executing method typically has no parent, since each method * is parsed separately. */ - if (!Op->Common.Parent) + if (!Op->Common.Parent || + Op->Common.Parent->Common.AmlOpcode == AML_SCOPE_OP) { /* * If this is the last statement in the method, we know it is not a |