--- android/hal-bluetooth.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/android/hal-bluetooth.c b/android/hal-bluetooth.c index ffaf8da..9d1c3f7 100644 --- a/android/hal-bluetooth.c +++ b/android/hal-bluetooth.c @@ -353,7 +353,9 @@ static int start_discovery(void) if (!interface_ready()) return BT_STATUS_NOT_READY; - return BT_STATUS_UNSUPPORTED; + return hal_ipc_cmd(HAL_SERVICE_ID_BLUETOOTH, + HAL_OP_START_DISCOVERY, 0, NULL, 0, + NULL, NULL); } static int cancel_discovery(void) @@ -363,7 +365,9 @@ static int cancel_discovery(void) if (!interface_ready()) return BT_STATUS_NOT_READY; - return BT_STATUS_UNSUPPORTED; + return hal_ipc_cmd(HAL_SERVICE_ID_BLUETOOTH, + HAL_OP_CANCEL_DISCOVERY, 0, NULL, 0, + NULL, NULL); } static int create_bond(const bt_bdaddr_t *bd_addr) -- 1.8.4.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