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/sh/dma-sh7760.c b/sound/soc/sh/dma-sh7760.c
index 39ffca0..0dad3a0 100644
--- a/sound/soc/sh/dma-sh7760.c
+++ b/sound/soc/sh/dma-sh7760.c
@@ -348,7 +348,7 @@
};
EXPORT_SYMBOL_GPL(sh7760_soc_platform);
-static int __devinit sh7760_soc_platform_init(void)
+static int __init sh7760_soc_platform_init(void)
{
return snd_soc_register_platform(&sh7760_soc_platform);
}