From: Colin Ian King <colin.king@xxxxxxxxxxxxx> 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@xxxxxxxxxxxxx> --- 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