diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-07-11 17:45:08 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-07-14 22:53:43 +0400 |
commit | dd2380e31cca0099aa49846e16103936aa9d818a (patch) | |
tree | a6c6495e1d6392285e3f8b799297a31e3fcb186f /sound/soc/samsung/ac97.c | |
parent | 8f501c7b4414d46a3ea6650f962b0fe9a69d9787 (diff) | |
download | linux-dd2380e31cca0099aa49846e16103936aa9d818a.tar.xz |
ASoC: samsung: remove unused DMA data
The s3c_dma_client structures and the 'ch' and 'ops' members in
s3c_dma_params were only used by the legacy DMA driver and serve
no function any more. This removes any reference to them.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/samsung/ac97.c')
-rw-r--r-- | sound/soc/samsung/ac97.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/sound/soc/samsung/ac97.c b/sound/soc/samsung/ac97.c index 2aa24d052a4a..e1615113fd84 100644 --- a/sound/soc/samsung/ac97.c +++ b/sound/soc/samsung/ac97.c @@ -38,30 +38,15 @@ struct s3c_ac97_info { }; static struct s3c_ac97_info s3c_ac97; -static struct s3c_dma_client s3c_dma_client_out = { - .name = "AC97 PCMOut" -}; - -static struct s3c_dma_client s3c_dma_client_in = { - .name = "AC97 PCMIn" -}; - -static struct s3c_dma_client s3c_dma_client_micin = { - .name = "AC97 MicIn" -}; - static struct s3c_dma_params s3c_ac97_pcm_out = { - .client = &s3c_dma_client_out, .dma_size = 4, }; static struct s3c_dma_params s3c_ac97_pcm_in = { - .client = &s3c_dma_client_in, .dma_size = 4, }; static struct s3c_dma_params s3c_ac97_mic_in = { - .client = &s3c_dma_client_micin, .dma_size = 4, }; |