Return-Path: From: Nick Pelly To: linux-bluetooth@vger.kernel.org Cc: Nick Pelly Subject: [PATCH] Bluetooth: Fallback from eSCO to SCO on error code 0x1f (unspecified error). Date: Tue, 24 Mar 2009 09:20:25 -0700 Message-Id: <1237911625-20893-1-git-send-email-npelly@google.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: Kyocera ED-8800 headset returns this error code when eSCO is attempted. Signed-off-by: Nick Pelly --- net/bluetooth/hci_event.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 5553424..42cb717 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -1646,7 +1646,8 @@ static inline void hci_sync_conn_complete_evt(struct hci_dev *hdev, struct sk_bu conn->type = SCO_LINK; } - if (conn->out && ev->status == 0x1c && conn->attempt < 2) { + if (conn->out && (ev->status == 0x1c || ev->status == 0x1f) && + conn->attempt < 2) { conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) | (hdev->esco_type & EDR_ESCO_MASK); hci_setup_sync(conn, conn->link->handle); -- 1.5.5