summaryrefslogtreecommitdiff
path: root/source/components/parser/pstree.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/components/parser/pstree.c')
-rw-r--r--source/components/parser/pstree.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/components/parser/pstree.c b/source/components/parser/pstree.c
index 5a72b3b7739a..6b67013a0da6 100644
--- a/source/components/parser/pstree.c
+++ b/source/components/parser/pstree.c
@@ -322,7 +322,6 @@ AcpiPsGetChild (
Child = AcpiPsGetArg (Op, 0);
break;
-
case AML_BUFFER_OP:
case AML_PACKAGE_OP:
case AML_METHOD_OP:
@@ -333,23 +332,22 @@ AcpiPsGetChild (
Child = AcpiPsGetArg (Op, 1);
break;
-
case AML_POWER_RES_OP:
case AML_INDEX_FIELD_OP:
Child = AcpiPsGetArg (Op, 2);
break;
-
case AML_PROCESSOR_OP:
case AML_BANK_FIELD_OP:
Child = AcpiPsGetArg (Op, 3);
break;
-
default:
+
/* All others have no children */
+
break;
}