summaryrefslogtreecommitdiff
path: root/android/hal-ipc.c
diff options
context:
space:
mode:
authorRavi kumar Veeramally <ravikumar.veeramally@linux.intel.com>2013-11-15 11:59:25 +0200
committerJohan Hedberg <johan.hedberg@intel.com>2013-11-15 12:02:39 +0200
commit32776f33d2c59ec025a5ada01db3e19d6c19282a (patch)
treefab4cfbe4bd022b01b948a23f3da84a910afc668 /android/hal-ipc.c
parent017aa015311a7cd7120eb7bdef5bd17efbd3ef12 (diff)
downloadbluez-32776f33d2c59ec025a5ada01db3e19d6c19282a.tar.gz
android/hal-ipc: Add pan notification call to hal-ipc dispatch handler
Diffstat (limited to 'android/hal-ipc.c')
-rw-r--r--android/hal-ipc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/android/hal-ipc.c b/android/hal-ipc.c
index e1c8dd703..026e2459d 100644
--- a/android/hal-ipc.c
+++ b/android/hal-ipc.c
@@ -55,6 +55,9 @@ static void notification_dispatch(struct hal_hdr *msg, int fd)
case HAL_SERVICE_ID_A2DP:
bt_notify_a2dp(msg->opcode, msg->payload, msg->len);
break;
+ case HAL_SERVICE_ID_PAN:
+ bt_notify_pan(msg->opcode, msg->payload, msg->len);
+ break;
default:
DBG("Unhandled notification service=%d opcode=0x%x",
msg->service_id, msg->opcode);