diff options
Diffstat (limited to 'sound/soc/codecs/uda134x.c')
-rw-r--r-- | sound/soc/codecs/uda134x.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sound/soc/codecs/uda134x.c b/sound/soc/codecs/uda134x.c index 58de749185e6..8e035b5d733f 100644 --- a/sound/soc/codecs/uda134x.c +++ b/sound/soc/codecs/uda134x.c | |||
@@ -651,6 +651,18 @@ struct snd_soc_codec_device soc_codec_dev_uda134x = { | |||
651 | }; | 651 | }; |
652 | EXPORT_SYMBOL_GPL(soc_codec_dev_uda134x); | 652 | EXPORT_SYMBOL_GPL(soc_codec_dev_uda134x); |
653 | 653 | ||
654 | static int __devinit uda134x_init(void) | ||
655 | { | ||
656 | return snd_soc_register_dai(&uda134x_dai); | ||
657 | } | ||
658 | module_init(uda134x_init); | ||
659 | |||
660 | static void __exit uda134x_exit(void) | ||
661 | { | ||
662 | snd_soc_unregister_dai(&uda134x_dai); | ||
663 | } | ||
664 | module_exit(uda134x_exit); | ||
665 | |||
654 | MODULE_DESCRIPTION("UDA134X ALSA soc codec driver"); | 666 | MODULE_DESCRIPTION("UDA134X ALSA soc codec driver"); |
655 | MODULE_AUTHOR("Zoltan Devai, Christian Pellegrin <chripell@evolware.org>"); | 667 | MODULE_AUTHOR("Zoltan Devai, Christian Pellegrin <chripell@evolware.org>"); |
656 | MODULE_LICENSE("GPL"); | 668 | MODULE_LICENSE("GPL"); |