summaryrefslogtreecommitdiff
path: root/android/handsfree.c
diff options
context:
space:
mode:
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>2014-11-06 10:32:09 +0200
committerSzymon Janc <szymon.janc@tieto.com>2014-11-06 12:31:32 +0100
commitbcfbdd059edd4ffc6c54fd6d045766ab9b9974f0 (patch)
treeb975350a36715fa53d9a5462fe870247d7244cf1 /android/handsfree.c
parent1fec414bf04822d01a7a4ae92af8f8bdd4b37f81 (diff)
downloadbluez-bcfbdd059edd4ffc6c54fd6d045766ab9b9974f0.tar.gz
android/handsfree: Add support for new API for key_pressed_cmd_cb
Key Pressed Command notification callback has new parameter bdaddr.
Diffstat (limited to 'android/handsfree.c')
-rw-r--r--android/handsfree.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/android/handsfree.c b/android/handsfree.c
index 1a9a70ace..b410f5dad 100644
--- a/android/handsfree.c
+++ b/android/handsfree.c
@@ -1143,6 +1143,7 @@ static void at_cmd_ckpd(struct hfp_context *result, enum hfp_gw_cmd_type type,
void *user_data)
{
struct hf_device *dev = user_data;
+ struct hal_ev_handsfree_hsp_key_press ev;
unsigned int val;
DBG("");
@@ -1155,8 +1156,11 @@ static void at_cmd_ckpd(struct hfp_context *result, enum hfp_gw_cmd_type type,
if (hfp_context_has_next(result))
break;
+ bdaddr2android(&dev->bdaddr, ev.bdaddr);
+
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_HANDSFREE,
- HAL_EV_HANDSFREE_HSP_KEY_PRESS, 0, NULL);
+ HAL_EV_HANDSFREE_HSP_KEY_PRESS,
+ sizeof(ev), &ev);
hfp_gw_send_result(dev->gw, HFP_RESULT_OK);
return;