diff options
Diffstat (limited to 'source/components/dispatcher/dsutils.c')
| -rw-r--r-- | source/components/dispatcher/dsutils.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/source/components/dispatcher/dsutils.c b/source/components/dispatcher/dsutils.c index 2cabdc680bad..545ca8fbb97c 100644 --- a/source/components/dispatcher/dsutils.c +++ b/source/components/dispatcher/dsutils.c @@ -201,7 +201,7 @@ AcpiDsIsResultUsed (      if (!Op)      {          ACPI_ERROR ((AE_INFO, "Null Op")); -        return_UINT8 (TRUE); +        return_VALUE (TRUE);      }      /* @@ -231,7 +231,7 @@ AcpiDsIsResultUsed (          ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,              "At Method level, result of [%s] not used\n",              AcpiPsGetOpcodeName (Op->Common.AmlOpcode))); -        return_UINT8 (FALSE); +        return_VALUE (FALSE);      }      /* Get info on the parent. The RootOp is AML_SCOPE */ @@ -241,7 +241,7 @@ AcpiDsIsResultUsed (      {          ACPI_ERROR ((AE_INFO,              "Unknown parent opcode Op=%p", Op)); -        return_UINT8 (FALSE); +        return_VALUE (FALSE);      }      /* @@ -331,7 +331,7 @@ ResultUsed:          AcpiPsGetOpcodeName (Op->Common.AmlOpcode),          AcpiPsGetOpcodeName (Op->Common.Parent->Common.AmlOpcode), Op)); -    return_UINT8 (TRUE); +    return_VALUE (TRUE);  ResultNotUsed: @@ -340,7 +340,7 @@ ResultNotUsed:          AcpiPsGetOpcodeName (Op->Common.AmlOpcode),          AcpiPsGetOpcodeName (Op->Common.Parent->Common.AmlOpcode), Op)); -    return_UINT8 (FALSE); +    return_VALUE (FALSE);  } | 
