aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2013-04-03 05:00:00 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-04-05 06:26:16 -0400
commite6451c3ff8c99a8c171a30f20b4234687b35712c (patch)
tree8dd814ebd79758171d36814bfa90546a0339d37d
parenta8909c9bc5803fd68363c8b349bd76c99fc0569b (diff)
ASoC: ep93xx_pcm: Fix compile error
Commit 453807f3 ("ASoC: ep93xx: Use ep93xx_dma_params instead of ep93xx_pcm_dma_params") introduced a small compile error by not updating the name of the 'dma_port' field to 'port'. This patch fixes it. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r--sound/soc/cirrus/ep93xx-i2s.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/cirrus/ep93xx-i2s.c b/sound/soc/cirrus/ep93xx-i2s.c
index aa124f86f60e..83075b3c180c 100644
--- a/sound/soc/cirrus/ep93xx-i2s.c
+++ b/sound/soc/cirrus/ep93xx-i2s.c
@@ -67,12 +67,12 @@ struct ep93xx_i2s_info {
67struct ep93xx_dma_data ep93xx_i2s_dma_data[] = { 67struct ep93xx_dma_data ep93xx_i2s_dma_data[] = {
68 [SNDRV_PCM_STREAM_PLAYBACK] = { 68 [SNDRV_PCM_STREAM_PLAYBACK] = {
69 .name = "i2s-pcm-out", 69 .name = "i2s-pcm-out",
70 .dma_port = EP93XX_DMA_I2S1, 70 .port = EP93XX_DMA_I2S1,
71 .direction = DMA_MEM_TO_DEV, 71 .direction = DMA_MEM_TO_DEV,
72 }, 72 },
73 [SNDRV_PCM_STREAM_CAPTURE] = { 73 [SNDRV_PCM_STREAM_CAPTURE] = {
74 .name = "i2s-pcm-in", 74 .name = "i2s-pcm-in",
75 .dma_port = EP93XX_DMA_I2S1, 75 .port = EP93XX_DMA_I2S1,
76 .direction = DMA_DEV_TO_MEM, 76 .direction = DMA_DEV_TO_MEM,
77 }, 77 },
78}; 78};