diff options
| author | Mark Brown <broonie@linaro.org> | 2013-10-24 06:24:13 -0400 |
|---|---|---|
| committer | Mark Brown <broonie@linaro.org> | 2013-10-24 06:24:13 -0400 |
| commit | abdd182e935a18ed7e075e2d267c371b9878a453 (patch) | |
| tree | e70a518188d8a91b873f441600daba42620d643b | |
| parent | c5833ddc4a381118817ca7a2ba05c5baebeadfdf (diff) | |
| parent | 25db0dc88016ec67ec4e38164482a3d7b7429f75 (diff) | |
Merge remote-tracking branch 'asoc/topic/spear' into asoc-next
| -rw-r--r-- | sound/soc/spear/spdif_in.c | 12 | ||||
| -rw-r--r-- | sound/soc/spear/spdif_out.c | 14 |
2 files changed, 4 insertions, 22 deletions
diff --git a/sound/soc/spear/spdif_in.c b/sound/soc/spear/spdif_in.c index 63acfeb4b69d..21a8c954af1c 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) | |||
| 257 | return ret; | 257 | return ret; |
| 258 | } | 258 | } |
| 259 | 259 | ||
| 260 | return snd_soc_register_component(&pdev->dev, &spdif_in_component, | 260 | return devm_snd_soc_register_component(&pdev->dev, &spdif_in_component, |
| 261 | &spdif_in_dai, 1); | 261 | &spdif_in_dai, 1); |
| 262 | } | ||
| 263 | |||
| 264 | static int spdif_in_remove(struct platform_device *pdev) | ||
| 265 | { | ||
| 266 | snd_soc_unregister_component(&pdev->dev); | ||
| 267 | |||
| 268 | return 0; | ||
| 269 | } | 262 | } |
| 270 | 263 | ||
| 271 | static struct platform_driver spdif_in_driver = { | 264 | static struct platform_driver spdif_in_driver = { |
| 272 | .probe = spdif_in_probe, | 265 | .probe = spdif_in_probe, |
| 273 | .remove = spdif_in_remove, | ||
| 274 | .driver = { | 266 | .driver = { |
| 275 | .name = "spdif-in", | 267 | .name = "spdif-in", |
| 276 | .owner = THIS_MODULE, | 268 | .owner = THIS_MODULE, |
diff --git a/sound/soc/spear/spdif_out.c b/sound/soc/spear/spdif_out.c index 2fdf68c98d22..b6ef6f78dc78 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) | |||
| 280 | struct spdif_out_dev *host; | 280 | struct spdif_out_dev *host; |
| 281 | struct spear_spdif_platform_data *pdata; | 281 | struct spear_spdif_platform_data *pdata; |
| 282 | struct resource *res; | 282 | struct resource *res; |
| 283 | int ret; | ||
| 284 | 283 | ||
| 285 | host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL); | 284 | host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL); |
| 286 | if (!host) { | 285 | if (!host) { |
| @@ -307,16 +306,8 @@ static int spdif_out_probe(struct platform_device *pdev) | |||
| 307 | 306 | ||
| 308 | dev_set_drvdata(&pdev->dev, host); | 307 | dev_set_drvdata(&pdev->dev, host); |
| 309 | 308 | ||
| 310 | ret = snd_soc_register_component(&pdev->dev, &spdif_out_component, | 309 | return devm_snd_soc_register_component(&pdev->dev, &spdif_out_component, |
| 311 | &spdif_out_dai, 1); | 310 | &spdif_out_dai, 1); |
| 312 | return ret; | ||
| 313 | } | ||
| 314 | |||
| 315 | static int spdif_out_remove(struct platform_device *pdev) | ||
| 316 | { | ||
| 317 | snd_soc_unregister_component(&pdev->dev); | ||
| 318 | |||
| 319 | return 0; | ||
| 320 | } | 311 | } |
| 321 | 312 | ||
| 322 | #ifdef CONFIG_PM | 313 | #ifdef CONFIG_PM |
| @@ -357,7 +348,6 @@ static SIMPLE_DEV_PM_OPS(spdif_out_dev_pm_ops, spdif_out_suspend, \ | |||
| 357 | 348 | ||
| 358 | static struct platform_driver spdif_out_driver = { | 349 | static struct platform_driver spdif_out_driver = { |
| 359 | .probe = spdif_out_probe, | 350 | .probe = spdif_out_probe, |
| 360 | .remove = spdif_out_remove, | ||
| 361 | .driver = { | 351 | .driver = { |
| 362 | .name = "spdif-out", | 352 | .name = "spdif-out", |
| 363 | .owner = THIS_MODULE, | 353 | .owner = THIS_MODULE, |
