ALSA: ASoC - Fix wrong section types

The module init entries should be __init instead of __devinit.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
diff --git a/sound/soc/s3c24xx/s3c24xx-i2s.c b/sound/soc/s3c24xx/s3c24xx-i2s.c
index 897b1ac..6f4d439 100644
--- a/sound/soc/s3c24xx/s3c24xx-i2s.c
+++ b/sound/soc/s3c24xx/s3c24xx-i2s.c
@@ -482,7 +482,7 @@
 };
 EXPORT_SYMBOL_GPL(s3c24xx_i2s_dai);
 
-static int __devinit s3c24xx_i2s_init(void)
+static int __init s3c24xx_i2s_init(void)
 {
 	return snd_soc_register_dai(&s3c24xx_i2s_dai);
 }