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

Commit 3762a33b authored by Arvind Yadav's avatar Arvind Yadav Committed by Boris Brezillon
Browse files

mtd: nand: orion: Handle return value of clk_prepare_enable



clk_prepare_enable() can fail here and we must check its return value.

Signed-off-by: default avatarArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@free-electrons.com>
parent d45e5316
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -166,7 +166,11 @@ static int __init orion_nand_probe(struct platform_device *pdev)
		}
	}

	clk_prepare_enable(info->clk);
	ret = clk_prepare_enable(info->clk);
	if (ret) {
		dev_err(&pdev->dev, "failed to prepare clock!\n");
		return ret;
	}

	ret = nand_scan(mtd, 1);
	if (ret)