diff options
Diffstat (limited to 'source/components/dispatcher/dswload2.c')
| -rw-r--r-- | source/components/dispatcher/dswload2.c | 12 | 
1 files changed, 8 insertions, 4 deletions
diff --git a/source/components/dispatcher/dswload2.c b/source/components/dispatcher/dswload2.c index 184f6aa367d21..36885b9723ee5 100644 --- a/source/components/dispatcher/dswload2.c +++ b/source/components/dispatcher/dswload2.c @@ -304,10 +304,12 @@ AcpiDsLoad2BeginOp (                  }                  else                  { -                    ACPI_ERROR_NAMESPACE (BufferPtr, Status); +                    ACPI_ERROR_NAMESPACE (WalkState->ScopeInfo, +                        BufferPtr, Status);                  }  #else -                ACPI_ERROR_NAMESPACE (BufferPtr, Status); +                ACPI_ERROR_NAMESPACE (WalkState->ScopeInfo, +                    BufferPtr, Status);  #endif                  return_ACPI_STATUS (Status);              } @@ -462,7 +464,8 @@ AcpiDsLoad2BeginOp (      if (ACPI_FAILURE (Status))      { -        ACPI_ERROR_NAMESPACE (BufferPtr, Status); +        ACPI_ERROR_NAMESPACE (WalkState->ScopeInfo, +            BufferPtr, Status);          return_ACPI_STATUS (Status);      } @@ -844,7 +847,8 @@ AcpiDsLoad2EndOp (          }          else          { -            ACPI_ERROR_NAMESPACE (Arg->Common.Value.String, Status); +            ACPI_ERROR_NAMESPACE (WalkState->ScopeInfo, +                Arg->Common.Value.String, Status);          }          break;  | 
