]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ALSA: atmel - Fix the return value in error path
authorTakashi Iwai <tiwai@suse.de>
Mon, 22 Nov 2010 07:58:13 +0000 (08:58 +0100)
committerTakashi Iwai <tiwai@suse.de>
Mon, 22 Nov 2010 07:58:13 +0000 (08:58 +0100)
In the commit 5ad57d20c91bdaf743bd8e3015df5a388314df8d
    ALSA: snd-atmel-abdac: test wrong variable
the return value via PTR_ERR() had to be fixed as well.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/atmel/abdac.c

index 4e47baada66ffd0e5e9fe9919809ebdf25d147dd..6e24091818950edc9c298241be2d28a751b39f83 100644 (file)
@@ -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);