linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] alpha: remove unneeded variable
@ 2021-08-02  9:25 yang.yang29
  0 siblings, 0 replies; only message in thread
From: yang.yang29 @ 2021-08-02  9:25 UTC (permalink / raw)
  To: rth, ink, mattst88; +Cc: linux-alpha, linux-kernel

From: Zhang Yunkai <zhang.yunkai@zte.com.cn>

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

Reported-by: Zeal Robot <zealci@zte.com.cn> 
Signed-off-by: Zhang Yunkai <zhang.yunkai@zte.com.cn>
---
 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


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-08-02  9:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-02  9:25 [PATCH] alpha: remove unneeded variable yang.yang29

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).