aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/omap/omap-mcbsp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/omap/omap-mcbsp.c b/sound/soc/omap/omap-mcbsp.c
index 39cc57ce4bfd..7b86373007ca 100644
--- a/sound/soc/omap/omap-mcbsp.c
+++ b/sound/soc/omap/omap-mcbsp.c
@@ -499,18 +499,18 @@ struct snd_soc_dai omap_mcbsp_dai[] = {
499 499
500EXPORT_SYMBOL_GPL(omap_mcbsp_dai); 500EXPORT_SYMBOL_GPL(omap_mcbsp_dai);
501 501
502static int __init omap_mcbsp_init(void) 502static int __init snd_omap_mcbsp_init(void)
503{ 503{
504 return snd_soc_register_dais(omap_mcbsp_dai, 504 return snd_soc_register_dais(omap_mcbsp_dai,
505 ARRAY_SIZE(omap_mcbsp_dai)); 505 ARRAY_SIZE(omap_mcbsp_dai));
506} 506}
507module_init(omap_mcbsp_init); 507module_init(snd_omap_mcbsp_init);
508 508
509static void __exit omap_mcbsp_exit(void) 509static void __exit snd_omap_mcbsp_exit(void)
510{ 510{
511 snd_soc_unregister_dais(omap_mcbsp_dai, ARRAY_SIZE(omap_mcbsp_dai)); 511 snd_soc_unregister_dais(omap_mcbsp_dai, ARRAY_SIZE(omap_mcbsp_dai));
512} 512}
513module_exit(omap_mcbsp_exit); 513module_exit(snd_omap_mcbsp_exit);
514 514
515MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@nokia.com>"); 515MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@nokia.com>");
516MODULE_DESCRIPTION("OMAP I2S SoC Interface"); 516MODULE_DESCRIPTION("OMAP I2S SoC Interface");