diff options
Diffstat (limited to 'sound/soc/codecs/pcm3008.c')
-rw-r--r-- | sound/soc/codecs/pcm3008.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sound/soc/codecs/pcm3008.c b/sound/soc/codecs/pcm3008.c index a5862555b444..f333e88ee255 100644 --- a/sound/soc/codecs/pcm3008.c +++ b/sound/soc/codecs/pcm3008.c | |||
@@ -195,6 +195,18 @@ struct snd_soc_codec_device soc_codec_dev_pcm3008 = { | |||
195 | }; | 195 | }; |
196 | EXPORT_SYMBOL_GPL(soc_codec_dev_pcm3008); | 196 | EXPORT_SYMBOL_GPL(soc_codec_dev_pcm3008); |
197 | 197 | ||
198 | static int __devinit pcm3008_init(void) | ||
199 | { | ||
200 | return snd_soc_register_dai(&pcm3008_dai); | ||
201 | } | ||
202 | module_init(pcm3008_init); | ||
203 | |||
204 | static void __exit pcm3008_exit(void) | ||
205 | { | ||
206 | snd_soc_unregister_dai(&pcm3008_dai); | ||
207 | } | ||
208 | module_exit(pcm3008_exit); | ||
209 | |||
198 | MODULE_DESCRIPTION("Soc PCM3008 driver"); | 210 | MODULE_DESCRIPTION("Soc PCM3008 driver"); |
199 | MODULE_AUTHOR("Hugo Villeneuve"); | 211 | MODULE_AUTHOR("Hugo Villeneuve"); |
200 | MODULE_LICENSE("GPL"); | 212 | MODULE_LICENSE("GPL"); |