提交 1beded5d 编写于 作者: T Takashi Iwai

ALSA: atmel - Fix the return value in error path

In the commit c0763e68
    ALSA: snd-atmel-abdac: test wrong variable
the return value via PTR_ERR() had to be fixed as well.
Signed-off-by: NTakashi Iwai <tiwai@suse.de>
上级 673f7a89
......@@ -422,7 +422,7 @@ static int __devinit atmel_abdac_probe(struct platform_device *pdev)
sample_clk = clk_get(&pdev->dev, "sample_clk");
if (IS_ERR(sample_clk)) {
dev_dbg(&pdev->dev, "no sample clock\n");
retval = PTR_ERR(pclk);
retval = PTR_ERR(sample_clk);
goto out_put_pclk;
}
clk_enable(pclk);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册