summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/dmwalk.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/dmwalk.c')
-rw-r--r--sys/contrib/dev/acpica/dmwalk.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/sys/contrib/dev/acpica/dmwalk.c b/sys/contrib/dev/acpica/dmwalk.c
index d73db16..23dec95 100644
--- a/sys/contrib/dev/acpica/dmwalk.c
+++ b/sys/contrib/dev/acpica/dmwalk.c
@@ -1,7 +1,7 @@
/*******************************************************************************
*
* Module Name: dmwalk - AML disassembly tree walk
- * $Revision: 9 $
+ * $Revision: 10 $
*
******************************************************************************/
@@ -210,9 +210,8 @@ AcpiDmWalkParseTree (
}
else
{
- /*
- * Let the callback process the node.
- */
+ /* Let the callback process the node */
+
Status = DescendingCallback (Op, Info->Level, Context);
if (ACPI_SUCCESS (Status))
{
@@ -477,9 +476,8 @@ AcpiDmDescendingOp (
Info->Level--;
}
- /*
- * Start the opcode argument list if necessary
- */
+ /* Start the opcode argument list if necessary */
+
OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode);
if ((OpInfo->Flags & AML_HAS_ARGS) ||
@@ -492,9 +490,8 @@ AcpiDmDescendingOp (
AcpiOsPrintf (" (");
}
- /*
- * If this is a named opcode, print the associated name value
- */
+ /* If this is a named opcode, print the associated name value */
+
if (OpInfo->Flags & AML_NAMED)
{
switch (Op->Common.AmlOpcode)
OpenPOWER on IntegriCloud