diff options
Diffstat (limited to 'source/components/utilities/uteval.c')
| -rw-r--r-- | source/components/utilities/uteval.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/source/components/utilities/uteval.c b/source/components/utilities/uteval.c index 542c691276c1..24afcad2a3cb 100644 --- a/source/components/utilities/uteval.c +++ b/source/components/utilities/uteval.c @@ -231,7 +231,7 @@ AcpiUtEvaluateNumericObject (      Status = AcpiUtEvaluateObject (DeviceNode, ObjectName, -                ACPI_BTYPE_INTEGER, &ObjDesc); +        ACPI_BTYPE_INTEGER, &ObjDesc);      if (ACPI_FAILURE (Status))      {          return_ACPI_STATUS (Status); @@ -278,7 +278,7 @@ AcpiUtExecute_STA (      Status = AcpiUtEvaluateObject (DeviceNode, METHOD_NAME__STA, -                ACPI_BTYPE_INTEGER, &ObjDesc); +        ACPI_BTYPE_INTEGER, &ObjDesc);      if (ACPI_FAILURE (Status))      {          if (AE_NOT_FOUND == Status) @@ -351,8 +351,8 @@ AcpiUtExecutePowerMethods (           * return type is an Integer.           */          Status = AcpiUtEvaluateObject (DeviceNode, -                    ACPI_CAST_PTR (char, MethodNames[i]), -                    ACPI_BTYPE_INTEGER, &ObjDesc); +            ACPI_CAST_PTR (char, MethodNames[i]), +            ACPI_BTYPE_INTEGER, &ObjDesc);          if (ACPI_SUCCESS (Status))          {              OutValues[i] = (UINT8) ObjDesc->Integer.Value; | 
