aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Morse <[email protected]>2019-01-29 18:48:43 +0000
committerRafael J. Wysocki <[email protected]>2019-02-07 23:10:45 +0100
commit7d49f2c75af22f980fd716a13634a16cfb7dd8a7 (patch)
treea7ba1a6665a4488d53c3aaa699520bd2d72104c1
parenteeb2555779471abdbcc6289a52dc54ce513feaf2 (diff)
ACPI / APEI: Remove spurious GHES_TO_CLEAR check
ghes_notify_nmi() checks ghes->flags for GHES_TO_CLEAR before going on to __process_error(). This is pointless as ghes_read_estatus() will always set this flag if it returns success, which was checked earlier in the loop. Remove it. Signed-off-by: James Morse <[email protected]> Reviewed-by: Borislav Petkov <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
-rw-r--r--drivers/acpi/apei/ghes.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c
index a34f79153b1a..c20e1d0947b1 100644
--- a/drivers/acpi/apei/ghes.c
+++ b/drivers/acpi/apei/ghes.c
@@ -940,9 +940,6 @@ static int ghes_notify_nmi(unsigned int cmd, struct pt_regs *regs)
__ghes_panic(ghes, buf_paddr);
}
- if (!(ghes->flags & GHES_TO_CLEAR))
- continue;
-
__process_error(ghes);
ghes_clear_estatus(ghes, buf_paddr);
}