summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/bluez5.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/plugins/bluez5.c b/plugins/bluez5.c
index 9233a2b2..788f3a25 100644
--- a/plugins/bluez5.c
+++ b/plugins/bluez5.c
@@ -35,6 +35,7 @@
#include <ofono/dbus.h>
#include <ofono/plugin.h>
#include <ofono/log.h>
+#include <ofono/handsfree-audio.h>
#include <gdbus/gdbus.h>
#include "bluez5.h"
@@ -256,5 +257,17 @@ void bt_disconnect_profile(DBusConnection *conn,
cb, user_data);
}
+static int bluez5_init(void)
+{
+ ofono_handsfree_audio_ref();
+
+ return 0;
+}
+
+static void bluez5_exit(void)
+{
+ ofono_handsfree_audio_unref();
+}
+
OFONO_PLUGIN_DEFINE(bluez5, "BlueZ 5 Utils Plugin", VERSION,
- OFONO_PLUGIN_PRIORITY_DEFAULT, NULL, NULL)
+ OFONO_PLUGIN_PRIORITY_DEFAULT, bluez5_init, bluez5_exit)