diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-09-19 06:53:44 (GMT) |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-09-19 11:56:26 (GMT) |
commit | 25db0dc88016ec67ec4e38164482a3d7b7429f75 (patch) | |
tree | 1e6dc97fb233951a2796dbcffb82a38b9e1962d1 | |
parent | 77aea716872fd976cbb9706b4588cf1fb9d52826 (diff) | |
download | linux-25db0dc88016ec67ec4e38164482a3d7b7429f75.tar.xz |
ASoC: SPEAr spdif_out: Remove redundant variable
Return directly and remove the intermediate local variable.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | sound/soc/spear/spdif_out.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/soc/spear/spdif_out.c b/sound/soc/spear/spdif_out.c index 70fc4d6..b6ef6f7 100644 --- a/sound/soc/spear/spdif_out.c +++ b/sound/soc/spear/spdif_out.c @@ -280,7 +280,6 @@ static int spdif_out_probe(struct platform_device *pdev) struct spdif_out_dev *host; struct spear_spdif_platform_data *pdata; struct resource *res; - int ret; host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL); if (!host) { @@ -307,9 +306,8 @@ static int spdif_out_probe(struct platform_device *pdev) dev_set_drvdata(&pdev->dev, host); - ret = devm_snd_soc_register_component(&pdev->dev, &spdif_out_component, - &spdif_out_dai, 1); - return ret; + return devm_snd_soc_register_component(&pdev->dev, &spdif_out_component, + &spdif_out_dai, 1); } #ifdef CONFIG_PM |