From: Luiz Augusto von Dentz Date: Thu, 14 Nov 2013 10:18:16 +0000 (+0200) Subject: android/hal-a2dp: Add implemention of .init X-Git-Tag: android-x86-4.4-r3~6862 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ad5813bcd5fbc724782db9a56c4dfcbc2b19e98e;p=android-x86%2Fexternal-bluetooth-bluez.git android/hal-a2dp: Add implemention of .init --- diff --git a/android/hal-a2dp.c b/android/hal-a2dp.c index cdb52290e..50a36fb98 100644 --- a/android/hal-a2dp.c +++ b/android/hal-a2dp.c @@ -99,13 +99,16 @@ static bt_status_t disconnect(bt_bdaddr_t *bd_addr) static bt_status_t init(btav_callbacks_t *callbacks) { + struct hal_cmd_register_module cmd; + DBG(""); cbs = callbacks; - /* TODO: enable service */ + cmd.service_id = HAL_SERVICE_ID_A2DP; - return BT_STATUS_SUCCESS; + return hal_ipc_cmd(HAL_SERVICE_ID_CORE, HAL_OP_REGISTER_MODULE, + sizeof(cmd), &cmd, 0, NULL, NULL); } static void cleanup()