From patchwork Tue Nov 8 07:50:08 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: 124287 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 18160B6F8C for ; Tue, 8 Nov 2011 18:50:25 +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 1RNgRm-0001vd-Du; Tue, 08 Nov 2011 07:50:18 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1RNgRl-0001v3-DG for kernel-team@lists.ubuntu.com; Tue, 08 Nov 2011 07:50:17 +0000 Received: from [112.104.32.137] by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1RNgRl-0004Kj-2j; Tue, 08 Nov 2011 07:50:17 +0000 Message-ID: <4EB8DF30.30505@canonical.com> Date: Tue, 08 Nov 2011 15:50:08 +0800 From: Jesse Sung User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.23) Gecko/20111010 Icedove/3.1.15 MIME-Version: 1.0 To: kernel-team@lists.ubuntu.com Subject: Re: [Oneiric][SRU][PATCH] UBUNTU: SAUCE: Bluetooth: Add support for Broadcom BCM20702A0 References: <4EB8DAA9.8020207@canonical.com> In-Reply-To: <4EB8DAA9.8020207@canonical.com> Cc: 854399@bugs.launchpad.net 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 On 11/08/2011 03:30 PM, Jesse Sung wrote: > > BugLink: http://bugs.launchpad.net/bugs/854399 > > Add a new entry (413c:8197) to Bluetooth USB device ID table. > --- > drivers/bluetooth/btusb.c | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) Oops... Re-send since previous one lack of Signed-off-by... Acked-by: Herton Ronaldo Krzesinski From 10a4863caa334970992f93b6659a841118776e09 Mon Sep 17 00:00:00 2001 From: Wen-chien Jesse Sung Date: Tue, 8 Nov 2011 15:17:46 +0800 Subject: [PATCH] UBUNTU: SAUCE: Bluetooth: Add support for Broadcom BCM20702A0 BugLink: http://bugs.launchpad.net/bugs/854399 Add a new entry (413c:8197) to Bluetooth USB device ID table. Signed-off-by: Wen-chien Jesse Sung --- 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..a151487 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -90,6 +90,9 @@ static struct usb_device_id btusb_table[] = { /* Canyon CN-BTU1 with HID interfaces */ { USB_DEVICE(0x0c10, 0x0000) }, + /* Broadcom BCM20702A0 */ + { USB_DEVICE(0x413c, 0x8197) }, + { } /* Terminating entry */ }; -- 1.7.7.1