]> git.hungrycats.org Git - linux/commitdiff
mtd: rawnand: hynix: fixed typo
authorMaxim Korotkov <korotkov.maxim.s@gmail.com>
Wed, 13 Mar 2024 10:27:20 +0000 (13:27 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 May 2024 07:49:34 +0000 (09:49 +0200)
[ Upstream commit 6819db94e1cd3ce24a432f3616cd563ed0c4eaba ]

The function hynix_nand_rr_init() should probably return an error code.
Judging by the usage, it seems that the return code is passed up
the call stack.
Right now, it always returns 0 and the function hynix_nand_cleanup()
in hynix_nand_init() has never been called.

Found by RASU JSC and Linux Verification Center (linuxtesting.org)

Fixes: 626994e07480 ("mtd: nand: hynix: Add read-retry support for 1x nm MLC NANDs")
Signed-off-by: Maxim Korotkov <korotkov.maxim.s@gmail.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20240313102721.1991299-1-korotkov.maxim.s@gmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/mtd/nand/raw/nand_hynix.c

index 39076735a3fbb0d155ad95d6c3d555f4d73e6116..9695f07b5eb26c33d0534c0eee5436001846e999 100644 (file)
@@ -402,7 +402,7 @@ static int hynix_nand_rr_init(struct nand_chip *chip)
        if (ret)
                pr_warn("failed to initialize read-retry infrastructure");
 
-       return 0;
+       return ret;
 }
 
 static void hynix_nand_extract_oobsize(struct nand_chip *chip,