From: Lars-Peter Clausen Date: Wed, 3 Apr 2013 09:00:00 +0000 (+0200) Subject: ASoC: ep93xx_pcm: Fix compile error X-Git-Tag: v3.10-rc1~14^2~20^2~3^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6451c3ff8c99a8c171a30f20b4234687b35712c;p=platform%2Fupstream%2Fkernel-adaptation-pc.git 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 Signed-off-by: Mark Brown --- diff --git a/sound/soc/cirrus/ep93xx-i2s.c b/sound/soc/cirrus/ep93xx-i2s.c index aa124f8..83075b3 100644 --- a/sound/soc/cirrus/ep93xx-i2s.c +++ b/sound/soc/cirrus/ep93xx-i2s.c @@ -67,12 +67,12 @@ struct ep93xx_i2s_info { struct ep93xx_dma_data ep93xx_i2s_dma_data[] = { [SNDRV_PCM_STREAM_PLAYBACK] = { .name = "i2s-pcm-out", - .dma_port = EP93XX_DMA_I2S1, + .port = EP93XX_DMA_I2S1, .direction = DMA_MEM_TO_DEV, }, [SNDRV_PCM_STREAM_CAPTURE] = { .name = "i2s-pcm-in", - .dma_port = EP93XX_DMA_I2S1, + .port = EP93XX_DMA_I2S1, .direction = DMA_DEV_TO_MEM, }, };