Message ID | 20140731093209.GF30276@mwanda (mailing list archive) |
---|---|
State | Accepted |
Commit | d387dd08e444b22f844475780fe12a1ad1c6fffd |
Headers | show |
On Thu, Jul 31, 2014 at 12:32:09PM +0300, Dan Carpenter wrote: > There is a cut and paste bug so it returns success instead of the error > code. Applied, thanks. Might be worth looking at how you're generating your CC lists here, it seems a bit random.
diff --git a/sound/soc/fsl/fsl_asrc.c b/sound/soc/fsl/fsl_asrc.c index b9a2888..b04438c 100644 --- a/sound/soc/fsl/fsl_asrc.c +++ b/sound/soc/fsl/fsl_asrc.c @@ -826,7 +826,7 @@ static int fsl_asrc_probe(struct platform_device *pdev) asrc_priv->mem_clk = devm_clk_get(&pdev->dev, "mem"); if (IS_ERR(asrc_priv->mem_clk)) { dev_err(&pdev->dev, "failed to get mem clock\n"); - return PTR_ERR(asrc_priv->ipg_clk); + return PTR_ERR(asrc_priv->mem_clk); } asrc_priv->ipg_clk = devm_clk_get(&pdev->dev, "ipg");
There is a cut and paste bug so it returns success instead of the error code. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>