Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9211439b authored by Wei Yongjun's avatar Wei Yongjun Committed by Brian Norris
Browse files

mtd: nand: omap: fix error return code in omap_nand_probe()



Fix to return a negative error code from the error handling case instead
of 0, to more closely match the rest of this function.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: default avatarEzequiel Garcia <ezequiel.garcia@free-electrons.com>
Acked-by: default avatarPekon Gupta <pekon@ti.com>
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
parent 5961ad2c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1953,7 +1953,8 @@ static int omap_nand_probe(struct platform_device *pdev)
		nand_chip->ecc.read_page	= omap_read_page_bch;
		nand_chip->ecc.write_page	= omap_write_page_bch;
		/* This ECC scheme requires ELM H/W block */
		if (is_elm_present(info, pdata->elm_of_node, BCH8_ECC) < 0) {
		err = is_elm_present(info, pdata->elm_of_node, BCH8_ECC);
		if (err < 0) {
			pr_err("nand: error: could not initialize ELM\n");
			goto return_error;
		}