diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2021-02-10 19:12:12 +0100 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2021-02-10 19:12:12 +0100 |
commit | 938bdd1d7dad75299201d1cc47c1dcf4d49f9274 (patch) | |
tree | b927a1406ed88936d0ca9e67341d07a382955709 /drivers/acpi/acpica/dsdebug.c | |
parent | fe0af09074bfeb46a35357e67635eefe33cdfc49 (diff) | |
parent | df1d4b466bb6a4eccb899ab761f5fbc7b3f95b67 (diff) |
Merge back ACPICA material for v5.12.
Diffstat (limited to 'drivers/acpi/acpica/dsdebug.c')
-rw-r--r-- | drivers/acpi/acpica/dsdebug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/dsdebug.c b/drivers/acpi/acpica/dsdebug.c index 63bc5f19fb82..b9b03d629930 100644 --- a/drivers/acpi/acpica/dsdebug.c +++ b/drivers/acpi/acpica/dsdebug.c @@ -3,7 +3,7 @@ * * Module Name: dsdebug - Parser/Interpreter interface - debugging * - * Copyright (C) 2000 - 2020, Intel Corp. + * Copyright (C) 2000 - 2021, Intel Corp. * *****************************************************************************/ @@ -100,7 +100,7 @@ acpi_ds_dump_method_stack(acpi_status status, /* Ignore control codes, they are not errors */ - if ((status & AE_CODE_MASK) == AE_CODE_CONTROL) { + if (ACPI_CNTL_EXCEPTION(status)) { return_VOID; } |