summaryrefslogtreecommitdiffstats
path: root/sound/soc/spear/spdif_in.c
diff options
context:
space:
mode:
authorUwe Kleine-König2013-06-12 22:18:01 +0200
committerMark Brown2013-06-13 11:25:52 +0200
commitd8f4e17fdd4f5e6fe6ef07496296fa88e150beda (patch)
treed4c97d192e8961d66d94722ddb4f14e8d45e760e /sound/soc/spear/spdif_in.c
parentASoC: Add Kconfig and Makefile to support SPEAr audio driver (diff)
downloadkernel-qcow2-linux-d8f4e17fdd4f5e6fe6ef07496296fa88e150beda.tar.gz
kernel-qcow2-linux-d8f4e17fdd4f5e6fe6ef07496296fa88e150beda.tar.xz
kernel-qcow2-linux-d8f4e17fdd4f5e6fe6ef07496296fa88e150beda.zip
ASoC: SPEAr spdif_{in,out}: fix fallout of previous cleanup
The patch that resulted in bfcc74e (ASoC: SPEAr spdif_{in,out}: use devm for clk and a few more cleanups) was broken and applied on a newer tree than it was created for. So bfcc74e introduced unbalanced clk handling, two warnings about unused variables and passed 3 arguments to a function only taking 2. This commit fixes that. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/spear/spdif_in.c')
-rw-r--r--sound/soc/spear/spdif_in.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/sound/soc/spear/spdif_in.c b/sound/soc/spear/spdif_in.c
index f0071ddbfa7d..63acfeb4b69d 100644
--- a/sound/soc/spear/spdif_in.c
+++ b/sound/soc/spear/spdif_in.c
@@ -257,20 +257,12 @@ static int spdif_in_probe(struct platform_device *pdev)
return ret;
}
- ret = snd_soc_register_component(&pdev->dev, &spdif_in_component,
+ return snd_soc_register_component(&pdev->dev, &spdif_in_component,
&spdif_in_dai, 1);
- if (ret != 0) {
- clk_put(host->clk);
- return ret;
- }
-
- return 0;
}
static int spdif_in_remove(struct platform_device *pdev)
{
- struct spdif_in_dev *host = dev_get_drvdata(&pdev->dev);
-
snd_soc_unregister_component(&pdev->dev);
return 0;