diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-05-03 23:25:21 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-05-20 18:14:49 -0400 |
commit | b45281412a6334ab2be5d7e449c98f50fb424a78 (patch) | |
tree | 9ee9ac0e28ec2f5802349ff6e8e0db64d8804a49 /sound/arm/pxa2xx-pcm.h | |
parent | 482b91c7f1ca3442f5cd57525e82d8e7b2dff8c8 (diff) |
ASoC: pxa: remove mach header dependency
As we are moving the mmp platform towards multiplatform support,
we have to stop including platform header files.
This changes the pxa-ssp sound driver file to no longer depend
on mach/hardware.h and mach/dma.h. The code using the definitions
from those headers is actually gone already, the only thing
that was still being used was the pxa_dma_desc typedef, which
we can easily work around by using the normal 'struct pxa_dma_desc'
name.
The pxa2xx-dma driver still uses this header, so we include it
explicitly there, which is ok because that is only used on pxa,
not on mmp.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Xia Kaixu <kaixu.xia@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/arm/pxa2xx-pcm.h')
-rw-r--r-- | sound/arm/pxa2xx-pcm.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/arm/pxa2xx-pcm.h b/sound/arm/pxa2xx-pcm.h index 2a8fc08d52a1..00330985beec 100644 --- a/sound/arm/pxa2xx-pcm.h +++ b/sound/arm/pxa2xx-pcm.h | |||
@@ -9,12 +9,11 @@ | |||
9 | * it under the terms of the GNU General Public License version 2 as | 9 | * it under the terms of the GNU General Public License version 2 as |
10 | * published by the Free Software Foundation. | 10 | * published by the Free Software Foundation. |
11 | */ | 11 | */ |
12 | #include <mach/dma.h> | ||
13 | 12 | ||
14 | struct pxa2xx_runtime_data { | 13 | struct pxa2xx_runtime_data { |
15 | int dma_ch; | 14 | int dma_ch; |
16 | struct snd_dmaengine_dai_dma_data *params; | 15 | struct snd_dmaengine_dai_dma_data *params; |
17 | pxa_dma_desc *dma_desc_array; | 16 | struct pxa_dma_desc *dma_desc_array; |
18 | dma_addr_t dma_desc_array_phys; | 17 | dma_addr_t dma_desc_array_phys; |
19 | }; | 18 | }; |
20 | 19 | ||