--- 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 5929fff..aa104ba 100644 --- a/android/hal-bluetooth.c +++ b/android/hal-bluetooth.c @@ -308,7 +308,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) @@ -318,7 +320,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