[PATCH] alpha: remove unneeded variable

From: yang.yang29
Date: Mon Aug 02 2021 - 05:28:49 EST


From: Zhang Yunkai <zhang.yunkai@xxxxxxxxxx>

This is a warning in coccicheck. Unneeded variable "status".

Reported-by: Zeal Robot <zealci@xxxxxxxxxx>
Signed-off-by: Zhang Yunkai <zhang.yunkai@xxxxxxxxxx>
---
arch/alpha/kernel/err_titan.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/arch/alpha/kernel/err_titan.c b/arch/alpha/kernel/err_titan.c
index 0ffb2feea42a..85d91da86ec4 100644
--- a/arch/alpha/kernel/err_titan.c
+++ b/arch/alpha/kernel/err_titan.c
@@ -589,7 +589,6 @@ titan_register_error_handlers(void)
static int
privateer_process_680_frame(struct el_common *mchk_header, int print)
{
- int status = MCHK_DISPOSITION_UNKNOWN_ERROR;
#ifdef CONFIG_VERBOSE_MCHECK
struct el_PRIVATEER_envdata_mcheck *emchk =
(struct el_PRIVATEER_envdata_mcheck *)
@@ -598,7 +597,7 @@ privateer_process_680_frame(struct el_common *mchk_header, int print)
/* TODO - categorize errors, for now, no error */

if (!print)
- return status;
+ return MCHK_DISPOSITION_UNKNOWN_ERROR;

/* TODO - decode instead of just dumping... */
printk("%s Summary Flags: %016llx\n"
@@ -624,7 +623,7 @@ privateer_process_680_frame(struct el_common *mchk_header, int print)
emchk->code);
#endif /* CONFIG_VERBOSE_MCHECK */

- return status;
+ return MCHK_DISPOSITION_UNKNOWN_ERROR;
}

int
--
2.25.1