From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> --- android/hal-a2dp.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/android/hal-a2dp.c b/android/hal-a2dp.c index 50a36fb..e9fadb7 100644 --- a/android/hal-a2dp.c +++ b/android/hal-a2dp.c @@ -113,14 +113,19 @@ static bt_status_t init(btav_callbacks_t *callbacks) static void cleanup() { + struct hal_cmd_unregister_module cmd; + DBG(""); if (!interface_ready()) return; - /* TODO: disable service */ - cbs = NULL; + + cmd.service_id = HAL_SERVICE_ID_A2DP; + + hal_ipc_cmd(HAL_SERVICE_ID_CORE, HAL_OP_UNREGISTER_MODULE, + sizeof(cmd), &cmd, 0, NULL, NULL); } static btav_interface_t iface = { -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html