From patchwork Tue Oct 4 02:04:06 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wen-chien Jesse Sung X-Patchwork-Id: 117530 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id BA8C5B6F75 for ; Tue, 4 Oct 2011 13:04:40 +1100 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1RAuMo-0000g4-3y; Tue, 04 Oct 2011 02:04:22 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1RAuMl-0000fz-JY for kernel-team@lists.ubuntu.com; Tue, 04 Oct 2011 02:04:19 +0000 Received: from [112.104.100.2] by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1RAuMl-0005Ct-6G for kernel-team@lists.ubuntu.com; Tue, 04 Oct 2011 02:04:19 +0000 Message-ID: <4E8A6996.3010408@canonical.com> Date: Tue, 04 Oct 2011 10:04:06 +0800 From: Jesse Sung User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.21) Gecko/20110831 Icedove/3.1.13 MIME-Version: 1.0 To: kernel-team@lists.ubuntu.com Subject: [PATCH oneiric] SRU: Bluetooth: Add support for Broadcom BCM20702A0 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com Already sent to upstream, and waiting for approval. http://thread.gmane.org/gmane.linux.bluez.kernel/16570 BugLink: https://bugs.launchpad.net/bugs/854399 SRU Justification: BCM20702A0 does not declare itself as a bluetooth device. Must add its ID to btusb device table to make it work. From eed37e8a6c826738fd7d9bfd51dbea6187caca60 Mon Sep 17 00:00:00 2001 From: Wen-chien Jesse Sung Date: Tue, 4 Oct 2011 09:48:42 +0800 Subject: [PATCH] Add a new entry (413c:8197) to device ID table Signed-off-by: Wen-chien Jesse Sung Acked-by: Stefan Bader --- drivers/bluetooth/btusb.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 513d462..6f6eab8 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -164,6 +164,9 @@ static struct usb_device_id blacklist_table[] = { /* Frontline ComProbe Bluetooth Sniffer */ { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER }, + /* Broadcom BCM20702A0 */ + { USB_DEVICE(0x413c, 0x8197) }, + { } /* Terminating entry */ };