summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/exresnte.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/exresnte.c')
-rw-r--r--sys/contrib/dev/acpica/exresnte.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/sys/contrib/dev/acpica/exresnte.c b/sys/contrib/dev/acpica/exresnte.c
index df8122c..71b56ef 100644
--- a/sys/contrib/dev/acpica/exresnte.c
+++ b/sys/contrib/dev/acpica/exresnte.c
@@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: exresnte - AML Interpreter object resolution
- * $Revision: 43 $
+ * $Revision: 45 $
*
*****************************************************************************/
@@ -178,14 +178,13 @@ AcpiExResolveNodeToValue (
* The stack pointer points to a ACPI_NAMESPACE_NODE (Node). Get the
* object that is attached to the Node.
*/
- Node = *ObjectPtr;
- SourceDesc = AcpiNsGetAttachedObject (Node);
- EntryType = AcpiNsGetType ((ACPI_HANDLE) Node);
+ Node = *ObjectPtr;
+ SourceDesc = AcpiNsGetAttachedObject (Node);
+ EntryType = AcpiNsGetType ((ACPI_HANDLE) Node);
ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Entry=%p SourceDesc=%p Type=%X\n",
Node, SourceDesc, EntryType));
-
/*
* Several object types require no further processing:
* 1) Devices rarely have an attached object, return the Node
@@ -210,7 +209,6 @@ AcpiExResolveNodeToValue (
*/
switch (EntryType)
{
-
case ACPI_TYPE_PACKAGE:
if (ACPI_TYPE_PACKAGE != SourceDesc->Common.Type)
@@ -286,7 +284,6 @@ AcpiExResolveNodeToValue (
Status = AcpiExReadDataFromField (SourceDesc, &ObjDesc);
break;
-
/*
* For these objects, just return the object attached to the Node
*/
@@ -363,7 +360,7 @@ AcpiExResolveNodeToValue (
ObjDesc->Integer.Value = TempVal;
- /*
+ /*
* Truncate value if we are executing from a 32-bit ACPI table
* AND actually executing AML code. If we are resolving
* an object in the namespace via an external call to the
OpenPOWER on IntegriCloud