summaryrefslogtreecommitdiff
path: root/android/hal-handsfree.c
diff options
context:
space:
mode:
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>2014-11-06 17:00:52 +0200
committerSzymon Janc <szymon.janc@tieto.com>2014-11-06 16:37:35 +0100
commitfa9a8efb9e167e1372c24b8dab9ed461e5f5fe5d (patch)
tree8bed72a3808bda244a9523b350ac7fb57c592fe6 /android/hal-handsfree.c
parent7ebfa1dbd28577b37ae975fe09519d05b3c069fc (diff)
downloadbluez-fa9a8efb9e167e1372c24b8dab9ed461e5f5fe5d.tar.gz
android/handsfree: Add dummy configure_wbs() function
In a case Android runs this print debug message.
Diffstat (limited to 'android/hal-handsfree.c')
-rw-r--r--android/hal-handsfree.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/android/hal-handsfree.c b/android/hal-handsfree.c
index 8b644f319..c2b3fd55c 100644
--- a/android/hal-handsfree.c
+++ b/android/hal-handsfree.c
@@ -828,6 +828,17 @@ static void cleanup(void)
hal_ipc_unregister(HAL_SERVICE_ID_HANDSFREE);
}
+#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
+static bt_status_t configure_wbs(bt_bdaddr_t *bd_addr, bthf_wbs_config_t config)
+{
+ /* TODO: implement */
+
+ DBG("");
+
+ return BT_STATUS_UNSUPPORTED;
+}
+#endif
+
static bthf_interface_t iface = {
.size = sizeof(iface),
.init = init,
@@ -845,7 +856,10 @@ static bthf_interface_t iface = {
.at_response = at_response,
.clcc_response = clcc_response,
.phone_state_change = phone_state_change,
- .cleanup = cleanup
+ .cleanup = cleanup,
+#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
+ .configure_wbs = configure_wbs,
+#endif
};
bthf_interface_t *bt_get_handsfree_interface(void)