[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20210429100354.58353-1-colin.king@canonical.com>
Date: Thu, 29 Apr 2021 11:03:54 +0100
From: Colin King <colin.king@...onical.com>
To: Nathan Chancellor <nathan@...nel.org>,
Nick Desaulniers <ndesaulniers@...gle.com>,
linux-kernel@...r.kernel.org
Cc: kernel-janitors@...r.kernel.org, clang-built-linux@...glegroups.com
Subject: [PATCH] initrd: remove redundant assignment to variable rotate
From: Colin Ian King <colin.king@...onical.com>
The assignment of 0 to rotate is redundant, the value is never
read so it can be it removed.
Cleans up clang scan-build warning:
init/do_mounts_rd.c:252:4: warning: Value stored to 'rotate' is
never read [deadcode.DeadStores]
rotate = 0;
^ ~
Signed-off-by: Colin Ian King <colin.king@...onical.com>
---
init/do_mounts_rd.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/init/do_mounts_rd.c b/init/do_mounts_rd.c
index ac021ae6e6fa..8003604dbf90 100644
--- a/init/do_mounts_rd.c
+++ b/init/do_mounts_rd.c
@@ -249,7 +249,6 @@ int __init rd_load_image(char *from)
for (i = 0; i < nblocks; i++) {
if (i && (i % devblocks == 0)) {
pr_cont("done disk #1.\n");
- rotate = 0;
fput(in_file);
break;
}
--
2.30.2
Powered by blists - more mailing lists