diff options
Diffstat (limited to 'arch/arm/mach-s3c64xx/dev-audio.c')
-rw-r--r-- | arch/arm/mach-s3c64xx/dev-audio.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c64xx/dev-audio.c b/arch/arm/mach-s3c64xx/dev-audio.c index c3e9e73bd0f9..55ae1b0afae9 100644 --- a/arch/arm/mach-s3c64xx/dev-audio.c +++ b/arch/arm/mach-s3c64xx/dev-audio.c | |||
@@ -333,3 +333,16 @@ void __init s3c64xx_ac97_setup_gpio(int num) | |||
333 | else | 333 | else |
334 | s3c_ac97_pdata.cfg_gpio = s3c64xx_ac97_cfg_gpe; | 334 | s3c_ac97_pdata.cfg_gpio = s3c64xx_ac97_cfg_gpe; |
335 | } | 335 | } |
336 | |||
337 | static u64 s3c_device_audio_dmamask = 0xffffffffUL; | ||
338 | |||
339 | struct platform_device s3c_device_pcm = { | ||
340 | .name = "s3c24xx-pcm-audio", | ||
341 | .id = -1, | ||
342 | .dev = { | ||
343 | .dma_mask = &s3c_device_audio_dmamask, | ||
344 | .coherent_dma_mask = 0xffffffffUL | ||
345 | } | ||
346 | }; | ||
347 | EXPORT_SYMBOL(s3c_device_pcm); | ||
348 | |||