aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/s3c24xx
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2008-12-11 10:28:18 +0100
committerTakashi Iwai <tiwai@suse.de>2008-12-11 10:28:18 +0100
commit6de45d5d776d2a7e7a9adc8ea49d37fe1bd45fb2 (patch)
treebd84017381c3c2bb183ad9d392e2c2fceffe6038 /sound/soc/s3c24xx
parentASoC: Stop WM8903 SYSCLK when suspending (diff)
downloadlinux-dev-6de45d5d776d2a7e7a9adc8ea49d37fe1bd45fb2.tar.xz
linux-dev-6de45d5d776d2a7e7a9adc8ea49d37fe1bd45fb2.zip
ALSA: ASoC - Fix DAI registration in s3c2443-ac97.c
Fixed the registration of dais in s3c2443-ac97.c. sound/soc/s3c24xx/s3c2443-ac97.c: In function 's3c2443_ac97_init': sound/soc/s3c24xx/s3c2443-ac97.c:401: warning: passing argument 1 of 'snd_soc_register_dai' from incompatible pointer type sound/soc/s3c24xx/s3c2443-ac97.c: In function 's3c2443_ac97_exit': sound/soc/s3c24xx/s3c2443-ac97.c:407: warning: passing argument 1 of 'snd_soc_unregister_dai' from incompatible pointer type Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/soc/s3c24xx')
-rw-r--r--sound/soc/s3c24xx/s3c2443-ac97.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sound/soc/s3c24xx/s3c2443-ac97.c b/sound/soc/s3c24xx/s3c2443-ac97.c
index 723779a3058d..1bfce40bb2e4 100644
--- a/sound/soc/s3c24xx/s3c2443-ac97.c
+++ b/sound/soc/s3c24xx/s3c2443-ac97.c
@@ -398,13 +398,15 @@ EXPORT_SYMBOL_GPL(soc_ac97_ops);
static int __init s3c2443_ac97_init(void)
{
- return snd_soc_register_dai(&s3c2443_ac97_dai);
+ return snd_soc_register_dais(s3c2443_ac97_dai,
+ ARRAY_SIZE(s3c2443_ac97_dai));
}
module_init(s3c2443_ac97_init);
static void __exit s3c2443_ac97_exit(void)
{
- snd_soc_unregister_dai(&s3c2443_ac97_dai);
+ snd_soc_unregister_dais(s3c2443_ac97_dai,
+ ARRAY_SIZE(s3c2443_ac97_dai));
}
module_exit(s3c2443_ac97_exit);