diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2015-11-25 21:04:42 +0000 | 
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2015-11-25 21:04:42 +0000 | 
| commit | b9098066cd6284319bca922f13e59517f774a103 (patch) | |
| tree | f01fd6c9053cb01ed84c00cb42ee789adafceaf5 /source/components/utilities/uteval.c | |
| parent | 1e24cf365bc9c8df179b145c90d52852724e54ee (diff) | |
Notes
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; | 
