diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-04-08 15:41:04 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-04-08 15:51:57 +0400 |
commit | 71e5222cbea124d737e1fe7de8e255253c12cd29 (patch) | |
tree | 3a2062d7ca89446e23a97f3b778b49b5537a3d6c /sound/soc/samsung/dma.h | |
parent | c159a85013afbb8283f0c7272812952e04d5c3a1 (diff) | |
download | linux-71e5222cbea124d737e1fe7de8e255253c12cd29.tar.xz |
ASoC: samsung: Fix build on multiplatform
PCM and S/PDIF drivers referenced mach headers for a trivial
data structure. This caused build errors on multiplatform builds
as machine headers are not accessible from driver files. Move the data
structure definition to the driver header and remove the dependency.
While at it rename the structure to avoid multiple definition errors
as the same structure is also used by the platform code.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/samsung/dma.h')
-rw-r--r-- | sound/soc/samsung/dma.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sound/soc/samsung/dma.h b/sound/soc/samsung/dma.h index 225e5378014e..ad7c0f04f00d 100644 --- a/sound/soc/samsung/dma.h +++ b/sound/soc/samsung/dma.h @@ -14,8 +14,12 @@ #include <sound/dmaengine_pcm.h> +struct s3c_dma_client { + char *name; +}; + struct s3c_dma_params { - struct s3c2410_dma_client *client; /* stream identifier */ + struct s3c_dma_client *client; /* stream identifier */ int channel; /* Channel ID */ dma_addr_t dma_addr; int dma_size; /* Size of the DMA transfer */ |