]> Git Repo - linux.git/commitdiff
ASoC: imx-ssi: Check the return value from clk_prepare_enable()
authorFabio Estevam <[email protected]>
Wed, 4 Dec 2013 22:27:44 +0000 (20:27 -0200)
committerMark Brown <[email protected]>
Thu, 5 Dec 2013 00:01:18 +0000 (00:01 +0000)
clk_prepare_enable() may fail, so let's check its return value and propagate it
in the case of error.

Signed-off-by: Fabio Estevam <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
sound/soc/fsl/imx-ssi.c

index 6336757e967ac6009086a4f07173170967a41481..df552fa1aa65f13faee928c63d2a8b8bf6c9eae4 100644 (file)
@@ -535,7 +535,9 @@ static int imx_ssi_probe(struct platform_device *pdev)
                        ret);
                goto failed_clk;
        }
-       clk_prepare_enable(ssi->clk);
+       ret = clk_prepare_enable(ssi->clk);
+       if (ret)
+               goto failed_clk;
 
        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        ssi->base = devm_ioremap_resource(&pdev->dev, res);
This page took 0.062379 seconds and 4 git commands to generate.