mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 03:15:31 +09:00
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: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
This commit is contained in:
committed by
Boris Brezillon
parent
d45e5316e6
commit
3762a33b00
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user