public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
From: "Kris, Chen" <bluefrog2012@gmail.com>
To: "'AceLan Kao'" <acelan.kao@canonical.com>,
	<linux-bluetooth@vger.kernel.org>,
	"'Gustavo F. Padovan'" <padovan@profusion.mobi>,
	"'Marcel Holtmann'" <marcel@holtmann.org>
Subject: RE: [PATCH] Bluetooth: Add support for AR3012 [0cf3:e004]
Date: Wed, 28 Mar 2012 21:44:00 +0800	[thread overview]
Message-ID: <000601cd0ce8$ddf02020$99d06060$@com> (raw)
In-Reply-To: <1331799788-20129-1-git-send-email-acelan.kao@canonical.com>

Hi, Acelan

I want to know, compared with { USB_DEVICE(0x0CF3, 0x3004) }, is {
USB_DEVICE(0x0CF3, 0xE004) } a new product of Atheros, or for a specific
customer of Atheros?

Thanks!

Kris

-----Original Message-----
From: linux-bluetooth-owner@vger.kernel.org
[mailto:linux-bluetooth-owner@vger.kernel.org] On Behalf Of AceLan Kao
Sent: 2012=C4=EA3=D4=C215=C8=D5 16:23
To: linux-bluetooth@vger.kernel.org; Gustavo F. Padovan; Marcel Holtmann
Subject: [PATCH] Bluetooth: Add support for AR3012 [0cf3:e004]

Add another vendor specific ID for Atheros AR3012

output of usb-devices:
T:  Bus=3D02 Lev=3D02 Prnt=3D02 Port=3D04 Cnt=3D01 Dev#=3D  4 Spd=3D12  =
MxCh=3D 0
D:  Ver=3D 1.10 Cls=3De0(wlcon) Sub=3D01 Prot=3D01 MxPS=3D64 #Cfgs=3D  1
P:  Vendor=3D0cf3 ProdID=3De004 Rev=3D00.02
S:  Manufacturer=3DAtheros Communications
S:  Product=3DBluetooth USB Host Controller
S:  SerialNumber=3DAlaska Day 2006
C:  #Ifs=3D 2 Cfg#=3D 1 Atr=3De0 MxPwr=3D100mA
I:  If#=3D 0 Alt=3D 0 #EPs=3D 3 Cls=3De0(wlcon) Sub=3D01 Prot=3D01 =
Driver=3Dbtusb
I:  If#=3D 1 Alt=3D 0 #EPs=3D 2 Cls=3De0(wlcon) Sub=3D01 Prot=3D01 =
Driver=3Dbtusb

BugLink: https://bugs.launchpad.net/bugs/922715

Signed-off-by: AceLan Kao <acelan.kao@canonical.com>
---
 drivers/bluetooth/ath3k.c |    2 ++
 drivers/bluetooth/btusb.c |    1 +
 2 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c
index 07f14d1..b55fc76 100644
--- a/drivers/bluetooth/ath3k.c
+++ b/drivers/bluetooth/ath3k.c
@@ -71,6 +71,7 @@ static struct usb_device_id ath3k_table[] =3D {
=20
 	/* Atheros AR3012 with sflash firmware*/
 	{ USB_DEVICE(0x0CF3, 0x3004) },
+	{ USB_DEVICE(0x0CF3, 0xE004) },
=20
 	/* Atheros AR5BBU12 with sflash firmware */
 	{ USB_DEVICE(0x0489, 0xE02C) },
@@ -87,6 +88,7 @@ static struct usb_device_id ath3k_blist_tbl[] =3D {
=20
 	/* Atheros AR3012 with sflash firmware*/
 	{ USB_DEVICE(0x0cf3, 0x3004), .driver_info =3D BTUSB_ATH3012 },
+	{ USB_DEVICE(0x0cf3, 0xe004), .driver_info =3D BTUSB_ATH3012 },
=20
 	{ }	/* Terminating entry */
 };
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 789c9b5..2b7d2d1 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -127,6 +127,7 @@ static struct usb_device_id blacklist_table[] =3D {
=20
 	/* Atheros 3012 with sflash firmware */
 	{ USB_DEVICE(0x0cf3, 0x3004), .driver_info =3D BTUSB_ATH3012 },
+	{ USB_DEVICE(0x0cf3, 0xe004), .driver_info =3D BTUSB_ATH3012 },
=20
 	/* Atheros AR5BBU12 with sflash firmware */
 	{ USB_DEVICE(0x0489, 0xe02c), .driver_info =3D BTUSB_IGNORE },
--=20
1.7.9.1

--
To unsubscribe from this list: send the line "unsubscribe =
linux-bluetooth"
in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2012-03-28 13:44 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-15  8:23 [PATCH] Bluetooth: Add support for AR3012 [0cf3:e004] AceLan Kao
2012-03-28 13:44 ` Kris, Chen [this message]
2012-03-29  2:09   ` AceLan Kao
  -- strict thread matches above, loose matches on Subject: below --
2012-03-29  2:14 AceLan Kao
2012-04-19  6:53 AceLan Kao
2012-04-19  9:15 ` Marcel Holtmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='000601cd0ce8$ddf02020$99d06060$@com' \
    --to=bluefrog2012@gmail.com \
    --cc=acelan.kao@canonical.com \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=marcel@holtmann.org \
    --cc=padovan@profusion.mobi \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox