summaryrefslogtreecommitdiff
path: root/android/hal-bluetooth.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-01-23 16:30:21 +0200
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-01-26 16:19:24 -0800
commit44ef6f0c4cbfdc16c1b88f2f16d4926dd8ba8fcb (patch)
tree087892e5e6baf8daf4f6dd2353e195b781a3af3d /android/hal-bluetooth.c
parentc466e79d6bb6cc6942baa564ffdb46ffd83da0ec (diff)
downloadbluez-44ef6f0c4cbfdc16c1b88f2f16d4926dd8ba8fcb.tar.gz
android: Add initial skeleton for AVRCP in the HAL
Diffstat (limited to 'android/hal-bluetooth.c')
-rw-r--r--android/hal-bluetooth.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/android/hal-bluetooth.c b/android/hal-bluetooth.c
index 4f0e7b765..0dac15806 100644
--- a/android/hal-bluetooth.c
+++ b/android/hal-bluetooth.c
@@ -762,6 +762,9 @@ static const void *get_profile_interface(const char *profile_id)
if (!strcmp(profile_id, BT_PROFILE_ADVANCED_AUDIO_ID))
return bt_get_a2dp_interface();
+ if (!strcmp(profile_id, BT_PROFILE_AV_RC_ID))
+ return bt_get_avrcp_interface();
+
return NULL;
}