diff options
author | Mark Brown <broonie@linaro.org> | 2013-08-19 23:59:05 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-20 11:36:33 +0200 |
commit | 85ff3c29d720fddddf35681bf8f244dfd91f66fa (patch) | |
tree | 198a56b1dce3272e933b9b7fd91cb32afa9bc11a /sound/soc/samsung/dma.c | |
parent | ASoC: samsung: Check to see if we managed to allocate a channel (diff) | |
download | linux-85ff3c29d720fddddf35681bf8f244dfd91f66fa.tar.xz linux-85ff3c29d720fddddf35681bf8f244dfd91f66fa.zip |
ASoC: samsung: Rename DMA platform registration functions
The current naming with a simple asoc_ prefix is too generic for use in
multiplatform kernels.
Signed-off-by: Mark Brown <broonie@linaro.org>
Acked-by: Sangbeom Kim <sbkim73@samsung.com>
Diffstat (limited to 'sound/soc/samsung/dma.c')
-rw-r--r-- | sound/soc/samsung/dma.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/samsung/dma.c b/sound/soc/samsung/dma.c index 50c1eb669e90..a0c67f60f594 100644 --- a/sound/soc/samsung/dma.c +++ b/sound/soc/samsung/dma.c @@ -437,17 +437,17 @@ static struct snd_soc_platform_driver samsung_asoc_platform = { .pcm_free = dma_free_dma_buffers, }; -int asoc_dma_platform_register(struct device *dev) +int samsung_asoc_dma_platform_register(struct device *dev) { return snd_soc_register_platform(dev, &samsung_asoc_platform); } -EXPORT_SYMBOL_GPL(asoc_dma_platform_register); +EXPORT_SYMBOL_GPL(samsung_asoc_dma_platform_register); -void asoc_dma_platform_unregister(struct device *dev) +void samsung_asoc_dma_platform_unregister(struct device *dev) { snd_soc_unregister_platform(dev); } -EXPORT_SYMBOL_GPL(asoc_dma_platform_unregister); +EXPORT_SYMBOL_GPL(samsung_asoc_dma_platform_unregister); MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>"); MODULE_DESCRIPTION("Samsung ASoC DMA Driver"); |