[alsa-devel] [patch -next] ASoC: fsl_asrc: fix an error code in fsl_asrc_probe()
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
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");
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.
participants (2)
-
Dan Carpenter
-
Mark Brown