Commit 1beded5d authored by Takashi Iwai's avatar 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: default avatarTakashi Iwai <tiwai@suse.de>
parent 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%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment