diff options
author | Tushar Behera <tushar.behera@linaro.org> | 2013-08-22 08:45:02 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-22 09:28:00 -0400 |
commit | 06b10ff913f4d6b3e659e365ce5f70e82cca353c (patch) | |
tree | cb9fb52d20b67e6d4b876a0c0e3c8796d133d836 /sound/soc/samsung/spdif.c | |
parent | 85ff3c29d720fddddf35681bf8f244dfd91f66fa (diff) |
ASoC: samsung: Fix build error with dma function rename
commit 85ff3c29d720 ("ASoC: samsung: Rename DMA platform registration
functions") renames the DMA registration functions. Fix the places where
it was left out.
Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/samsung/spdif.c')
-rw-r--r-- | sound/soc/samsung/spdif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/samsung/spdif.c b/sound/soc/samsung/spdif.c index 5ea70ab0ecb5..28487dcc4538 100644 --- a/sound/soc/samsung/spdif.c +++ b/sound/soc/samsung/spdif.c | |||
@@ -442,7 +442,7 @@ static int spdif_probe(struct platform_device *pdev) | |||
442 | 442 | ||
443 | spdif->dma_playback = &spdif_stereo_out; | 443 | spdif->dma_playback = &spdif_stereo_out; |
444 | 444 | ||
445 | ret = asoc_dma_platform_register(&pdev->dev); | 445 | ret = samsung_asoc_dma_platform_register(&pdev->dev); |
446 | if (ret) { | 446 | if (ret) { |
447 | dev_err(&pdev->dev, "failed to register DMA: %d\n", ret); | 447 | dev_err(&pdev->dev, "failed to register DMA: %d\n", ret); |
448 | goto err5; | 448 | goto err5; |
@@ -468,7 +468,7 @@ static int spdif_remove(struct platform_device *pdev) | |||
468 | struct samsung_spdif_info *spdif = &spdif_info; | 468 | struct samsung_spdif_info *spdif = &spdif_info; |
469 | struct resource *mem_res; | 469 | struct resource *mem_res; |
470 | 470 | ||
471 | asoc_dma_platform_unregister(&pdev->dev); | 471 | samsung_asoc_dma_platform_unregister(&pdev->dev); |
472 | snd_soc_unregister_component(&pdev->dev); | 472 | snd_soc_unregister_component(&pdev->dev); |
473 | 473 | ||
474 | iounmap(spdif->regs); | 474 | iounmap(spdif->regs); |