diff options
-rw-r--r-- | sound/soc/s3c24xx/neo1973_wm8753.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/soc/s3c24xx/neo1973_wm8753.c b/sound/soc/s3c24xx/neo1973_wm8753.c index a15b970d17c..4efa350575c 100644 --- a/sound/soc/s3c24xx/neo1973_wm8753.c +++ b/sound/soc/s3c24xx/neo1973_wm8753.c @@ -677,6 +677,11 @@ static int __init neo1973_init(void) return -ENODEV; } + /* register bluetooth DAI here */ + ret = snd_soc_register_dai(&bt_dai); + if (ret) + return ret; + neo1973_snd_device = platform_device_alloc("soc-audio", -1); if (!neo1973_snd_device) return -ENOMEM; @@ -702,6 +707,7 @@ static void __exit neo1973_exit(void) { DBG("Entered %s\n", __func__); + snd_soc_unregister_dai(&bt_dai); i2c_del_driver(&lm4857_i2c_driver); platform_device_unregister(neo1973_snd_device); } |