aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/wm8900.c
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2008-12-08 14:17:58 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2008-12-09 05:49:29 -0500
commit64089b84abfe2f26a864ebd968429302dcb071de (patch)
tree47827fc4436e4e331b93e1e8cacdf27f6a0a12ac /sound/soc/codecs/wm8900.c
parent958e792c7c8f06a9e666adb0ed94fff2cf90156f (diff)
ASoC: Register non-AC97 codec DAIs
Currently this is done at module probe time since ASoC ties in codec device probe to the instantiation of the entire ASoC device. Subsequent patches will refactor the codec drivers to handle probing separately. Note that the core does not yet use this information. AC97 is special since the codec is controlled over the AC97 link but we want to give the machine driver a chance to set up the system before trying to instantiate since it may need to do configuration before the AC97 link will operate Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/wm8900.c')
-rw-r--r--sound/soc/codecs/wm8900.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm8900.c b/sound/soc/codecs/wm8900.c
index 29cd83991c5b..02bb1c999ba1 100644
--- a/sound/soc/codecs/wm8900.c
+++ b/sound/soc/codecs/wm8900.c
@@ -1530,6 +1530,18 @@ struct snd_soc_codec_device soc_codec_dev_wm8900 = {
1530}; 1530};
1531EXPORT_SYMBOL_GPL(soc_codec_dev_wm8900); 1531EXPORT_SYMBOL_GPL(soc_codec_dev_wm8900);
1532 1532
1533static int __devinit wm8900_modinit(void)
1534{
1535 return snd_soc_register_dai(&wm8900_dai);
1536}
1537module_init(wm8900_modinit);
1538
1539static void __exit wm8900_exit(void)
1540{
1541 snd_soc_unregister_dai(&wm8900_dai);
1542}
1543module_exit(wm8900_exit);
1544
1533MODULE_DESCRIPTION("ASoC WM8900 driver"); 1545MODULE_DESCRIPTION("ASoC WM8900 driver");
1534MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfonmicro.com>"); 1546MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfonmicro.com>");
1535MODULE_LICENSE("GPL"); 1547MODULE_LICENSE("GPL");