From 2aa45c5fc5c7b12edc38417b99dfec1ebe929837 Mon Sep 17 00:00:00 2001 From: Jaganath Kanakkassery Date: Wed, 2 May 2012 17:06:30 +0530 Subject: [PATCH] audio: Reset hfp and hs handle before connection When bluez initiates headset connection hfp and hs handle is saved each time when initiating connection. So at some point if hf service is removed in remote headset then bluez connects to hs service. But because of previously stored hfp handle bluez thinks that connection made to hs service is hfp connection and waits for at commands. Eventually bluez connection state will be incorrectly set. --- audio/headset.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/audio/headset.c b/audio/headset.c index f15951dd9..fb10c3634 100644 --- a/audio/headset.c +++ b/audio/headset.c @@ -1464,9 +1464,11 @@ static int headset_set_channel(struct headset *headset, if (svc == HANDSFREE_SVCLASS_ID) { headset->hfp_handle = record->handle; + headset->hsp_handle = 0; DBG("Discovered Handsfree service on channel %d", ch); } else { headset->hsp_handle = record->handle; + headset->hfp_handle = 0; DBG("Discovered Headset service on channel %d", ch); } -- 2.47.3