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

Commit ff52c67a authored by Wei Yongjun's avatar Wei Yongjun Committed by David Woodhouse
Browse files

mtd: atmel_nand: fix error return code in atmel_nand_probe()



Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: default avatarJosh Wu <josh.wu@atmel.com>
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 13134f48
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2048,6 +2048,7 @@ static int __init atmel_nand_probe(struct platform_device *pdev)
		irq = platform_get_irq(pdev, 0);
		if (irq < 0) {
			dev_err(host->dev, "Cannot get HSMC irq!\n");
			res = irq;
			goto err_nand_ioremap;
		}