Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH 1/2] Add NO CARRIER response to HFP
@ 2011-04-17 21:29 Dmitriy Paliy
  2011-04-17 21:29 ` [PATCH 2/2] Add NO CARRIER reponse to maemo6 telephony driver Dmitriy Paliy
  2011-04-18  7:50 ` [PATCH 1/2] Add NO CARRIER response to HFP Johan Hedberg
  0 siblings, 2 replies; 3+ messages in thread
From: Dmitriy Paliy @ 2011-04-17 21:29 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Dmitriy Paliy

HFP is updated by NO CARRIER response accordingly to HFP 1.5 p.68.
---
 audio/headset.c |   17 ++++++++++-------
 1 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/audio/headset.c b/audio/headset.c
index c605e9d..2e4f6ca 100644
--- a/audio/headset.c
+++ b/audio/headset.c
@@ -687,14 +687,17 @@ static int telephony_generic_rsp(struct audio_device *device, cme_error_t err)
 	struct headset *hs = device->headset;
 	struct headset_slc *slc = hs->slc;
 
-	if (err != CME_ERROR_NONE) {
-		if (slc->cme_enabled)
-			return headset_send(hs, "\r\n+CME ERROR: %d\r\n", err);
-		else
-			return headset_send(hs, "\r\nERROR\r\n");
-	}
+	if ((err != CME_ERROR_NONE) && slc->cme_enabled)
+		return headset_send(hs, "\r\n+CME ERROR: %d\r\n", err);
 
-	return headset_send(hs, "\r\nOK\r\n");
+	switch (err) {
+	case CME_ERROR_NONE:
+		return headset_send(hs, "\r\nOK\r\n");
+	case CME_ERROR_NO_NETWORK_SERVICE:
+		return headset_send(hs, "\r\nNO CARRIER\r\n");
+	default:
+		return headset_send(hs, "\r\nERROR\r\n");
+	}
 }
 
 int telephony_event_reporting_rsp(void *telephony_device, cme_error_t err)
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-04-18  7:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-17 21:29 [PATCH 1/2] Add NO CARRIER response to HFP Dmitriy Paliy
2011-04-17 21:29 ` [PATCH 2/2] Add NO CARRIER reponse to maemo6 telephony driver Dmitriy Paliy
2011-04-18  7:50 ` [PATCH 1/2] Add NO CARRIER response to HFP Johan Hedberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox