All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ath3k: Add support for ID 0x13d3/0x3402
@ 2013-07-15  3:59 sujith
  2013-07-15 20:14 ` Gustavo Padovan
  0 siblings, 1 reply; 5+ messages in thread
From: sujith @ 2013-07-15  3:59 UTC (permalink / raw)
  To: linux-bluetooth

From: Sujith Manoharan <sujith@msujith.org>

Bug: https://bugzilla.kernel.org/show_bug.cgi?id=59701

Signed-off-by: Sujith Manoharan <sujith@msujith.org>
---
 drivers/bluetooth/ath3k.c | 2 ++
 drivers/bluetooth/btusb.c | 1 +
 2 files changed, 3 insertions(+)

diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c
index 11f467c..3f6f40c 100644
--- a/drivers/bluetooth/ath3k.c
+++ b/drivers/bluetooth/ath3k.c
@@ -91,6 +91,7 @@ static struct usb_device_id ath3k_table[] = {
 	{ USB_DEVICE(0x0489, 0xe04e) },
 	{ USB_DEVICE(0x0489, 0xe056) },
 	{ USB_DEVICE(0x0489, 0xe04d) },
+	{ USB_DEVICE(0x13d3, 0x3402) },
 
 	/* Atheros AR5BBU12 with sflash firmware */
 	{ USB_DEVICE(0x0489, 0xE02C) },
@@ -128,6 +129,7 @@ static struct usb_device_id ath3k_blist_tbl[] = {
 	{ USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
 	{ USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
 	{ USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
+	{ USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
 
 	/* Atheros AR5BBU22 with sflash firmware */
 	{ USB_DEVICE(0x0489, 0xE03C), .driver_info = BTUSB_ATH3012 },
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index de4cf4d..6f00691 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -154,6 +154,7 @@ static struct usb_device_id blacklist_table[] = {
 	{ USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
 	{ USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
 	{ USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
+	{ USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
 
 	/* Atheros AR5BBU12 with sflash firmware */
 	{ USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
-- 
1.8.3.2


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

* Re: [PATCH] ath3k: Add support for ID 0x13d3/0x3402
  2013-07-15  3:59 [PATCH] ath3k: Add support for ID 0x13d3/0x3402 sujith
@ 2013-07-15 20:14 ` Gustavo Padovan
  2013-07-15 22:04   ` Sujith Manoharan
  0 siblings, 1 reply; 5+ messages in thread
From: Gustavo Padovan @ 2013-07-15 20:14 UTC (permalink / raw)
  To: sujith; +Cc: linux-bluetooth

Hi Sujith,

* sujith@msujith.org <sujith@msujith.org> [2013-07-15 09:29:03 +0530]:

> From: Sujith Manoharan <sujith@msujith.org>
> 
> Bug: https://bugzilla.kernel.org/show_bug.cgi?id=59701
> 
> Signed-off-by: Sujith Manoharan <sujith@msujith.org>
> ---
>  drivers/bluetooth/ath3k.c | 2 ++
>  drivers/bluetooth/btusb.c | 1 +
>  2 files changed, 3 insertions(+)

I would need the output of /sys/kernel/debug/usb/devices for this devices.
We need to keep track of the devices we support. Could you please resend this
patch with this information in the commit message? Thanks.

	Gustavo

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

* Re: [PATCH] ath3k: Add support for ID 0x13d3/0x3402
  2013-07-15 20:14 ` Gustavo Padovan
@ 2013-07-15 22:04   ` Sujith Manoharan
  2013-07-25 12:07     ` Gustavo Padovan
  0 siblings, 1 reply; 5+ messages in thread
From: Sujith Manoharan @ 2013-07-15 22:04 UTC (permalink / raw)
  To: Gustavo Padovan; +Cc: linux-bluetooth

Gustavo Padovan wrote:
> I would need the output of /sys/kernel/debug/usb/devices for this devices.
> We need to keep track of the devices we support. Could you please resend this
> patch with this information in the commit message? Thanks.

I don't have the hardware, but the kernel bug report has the details from
lsusb - if that's enough, I can send a v2.

Sujith


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

* Re: [PATCH] ath3k: Add support for ID 0x13d3/0x3402
  2013-07-15 22:04   ` Sujith Manoharan
@ 2013-07-25 12:07     ` Gustavo Padovan
  0 siblings, 0 replies; 5+ messages in thread
From: Gustavo Padovan @ 2013-07-25 12:07 UTC (permalink / raw)
  To: Sujith Manoharan; +Cc: linux-bluetooth

Hi Sujith,

* Sujith Manoharan <sujith@msujith.org> [2013-07-16 03:34:35 +0530]:

> Gustavo Padovan wrote:
> > I would need the output of /sys/kernel/debug/usb/devices for this devices.
> > We need to keep track of the devices we support. Could you please resend this
> > patch with this information in the commit message? Thanks.
> 
> I don't have the hardware, but the kernel bug report has the details from
> lsusb - if that's enough, I can send a v2.

I picked the information from the bug report, patch is now on
bluetooth.git.

	Gustavo

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

* [PATCH] ath3k: Add support for ID 0x13d3/0x3402
@ 2013-07-15  4:23 Sujith Manoharan
  0 siblings, 0 replies; 5+ messages in thread
From: Sujith Manoharan @ 2013-07-15  4:23 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: gustavo

Bug: https://bugzilla.kernel.org/show_bug.cgi?id=59701

Signed-off-by: Sujith Manoharan <sujith@msujith.org>
---
 drivers/bluetooth/ath3k.c | 2 ++
 drivers/bluetooth/btusb.c | 1 +
 2 files changed, 3 insertions(+)

diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c
index 6f17e4d..81973ec 100644
--- a/drivers/bluetooth/ath3k.c
+++ b/drivers/bluetooth/ath3k.c
@@ -92,6 +92,7 @@ static struct usb_device_id ath3k_table[] = {
 	{ USB_DEVICE(0x0489, 0xe056) },
 	{ USB_DEVICE(0x0489, 0xe04d) },
 	{ USB_DEVICE(0x04c5, 0x1330) },
+	{ USB_DEVICE(0x13d3, 0x3402) },
 
 	/* Atheros AR5BBU12 with sflash firmware */
 	{ USB_DEVICE(0x0489, 0xE02C) },
@@ -130,6 +131,7 @@ static struct usb_device_id ath3k_blist_tbl[] = {
 	{ USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
 	{ USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
 	{ USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
+	{ USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
 
 	/* Atheros AR5BBU22 with sflash firmware */
 	{ USB_DEVICE(0x0489, 0xE03C), .driver_info = BTUSB_ATH3012 },
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index ad03394..c4145c7 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -152,6 +152,7 @@ static struct usb_device_id blacklist_table[] = {
 	{ USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
 	{ USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
 	{ USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
+	{ USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
 
 	/* Atheros AR5BBU12 with sflash firmware */
 	{ USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
-- 
1.8.3.2


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

end of thread, other threads:[~2013-07-25 12:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-15  3:59 [PATCH] ath3k: Add support for ID 0x13d3/0x3402 sujith
2013-07-15 20:14 ` Gustavo Padovan
2013-07-15 22:04   ` Sujith Manoharan
2013-07-25 12:07     ` Gustavo Padovan
2013-07-15  4:23 Sujith Manoharan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.