diff options
Diffstat (limited to 'kernel/sound/soc/samsung/s3c2412-i2s.c')
-rw-r--r-- | kernel/sound/soc/samsung/s3c2412-i2s.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sound/soc/samsung/s3c2412-i2s.c b/kernel/sound/soc/samsung/s3c2412-i2s.c index 2b766d212..77d27c85a 100644 --- a/kernel/sound/soc/samsung/s3c2412-i2s.c +++ b/kernel/sound/soc/samsung/s3c2412-i2s.c @@ -34,13 +34,13 @@ #include "s3c2412-i2s.h" static struct s3c_dma_params s3c2412_i2s_pcm_stereo_out = { - .channel = DMACH_I2S_OUT, + .slave = (void *)(uintptr_t)DMACH_I2S_OUT, .ch_name = "tx", .dma_size = 4, }; static struct s3c_dma_params s3c2412_i2s_pcm_stereo_in = { - .channel = DMACH_I2S_IN, + .slave = (void *)(uintptr_t)DMACH_I2S_IN, .ch_name = "rx", .dma_size = 4, }; |