All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Add CDC-ACM support for the CX93010-2x UCMxx USB Modem
@ 2012-09-28 14:16 jc
  2012-10-10 19:42 ` Oliver Neukum
  0 siblings, 1 reply; 8+ messages in thread
From: jc @ 2012-09-28 14:16 UTC (permalink / raw)
  To: Oliver Neukum; +Cc: Greg Kroah-Hartman, linux-usb, linux-kernel

From: Jean-Christian de Rivaz <jc@eclis.ch>

This USB V.92/V.32bis Controllered Modem have the USB vendor ID 0x0572
and device ID 0x1340. It need the NO_UNION_NORMAL quirk to be recognized.

Reference:
http://www.conexant.com/servlets/DownloadServlet/DSH-201723-005.pdf?docid=1725&revid=5

Signed-off-by: Jean-Christian de Rivaz <jc@eclis.ch>
---
 drivers/usb/class/cdc-acm.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c
index f763ed7..e8007b8 100644
--- a/drivers/usb/class/cdc-acm.c
+++ b/drivers/usb/class/cdc-acm.c
@@ -1551,6 +1551,9 @@ static const struct usb_device_id acm_ids[] = {
 					   Maybe we should define a new
 					   quirk for this. */
 	},
+	{ USB_DEVICE(0x0572, 0x1340), /* Conexant CX93010-2x UCMxx */
+	.driver_info = NO_UNION_NORMAL,
+	},
 	{ USB_DEVICE(0x1bbb, 0x0003), /* Alcatel OT-I650 */
 	.driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */
 	},
-- 
1.7.2.5


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

* Re: [PATCH] Add CDC-ACM support for the CX93010-2x UCMxx USB Modem
  2012-09-28 14:16 [PATCH] Add CDC-ACM support for the CX93010-2x UCMxx USB Modem jc
@ 2012-10-10 19:42 ` Oliver Neukum
  2012-10-10 22:29   ` Jean-Christian de Rivaz
  2012-10-17 20:32   ` Greg Kroah-Hartman
  0 siblings, 2 replies; 8+ messages in thread
From: Oliver Neukum @ 2012-10-10 19:42 UTC (permalink / raw)
  To: jc; +Cc: Greg Kroah-Hartman, linux-usb, linux-kernel, davem

On Friday 28 September 2012 16:16:04 jc@eclis.ch wrote:
> From: Jean-Christian de Rivaz <jc@eclis.ch>
> 
> This USB V.92/V.32bis Controllered Modem have the USB vendor ID 0x0572
> and device ID 0x1340. It need the NO_UNION_NORMAL quirk to be recognized.
> 
> Reference:
> http://www.conexant.com/servlets/DownloadServlet/DSH-201723-005.pdf?docid=1725&revid=5
> 
> Signed-off-by: Jean-Christian de Rivaz <jc@eclis.ch>
Acked-by: Oliver Neukum <oneukum@SUSE.DE>

However, this went to the wrong list. Please repost to

davem@davemloft.net
netdev@vger.kernel.org

	Regards
		Oliver


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

* Re: [PATCH] Add CDC-ACM support for the CX93010-2x UCMxx USB Modem
  2012-10-10 19:42 ` Oliver Neukum
@ 2012-10-10 22:29   ` Jean-Christian de Rivaz
  2012-10-17 20:32     ` Greg Kroah-Hartman
  2012-10-17 20:32   ` Greg Kroah-Hartman
  1 sibling, 1 reply; 8+ messages in thread
From: Jean-Christian de Rivaz @ 2012-10-10 22:29 UTC (permalink / raw)
  To: Oliver Neukum; +Cc: Greg Kroah-Hartman, linux-usb, linux-kernel, davem

On Wed, Oct 10, 2012 at 09:42:32PM +0200, Oliver Neukum wrote:
> On Friday 28 September 2012 16:16:04 jc@eclis.ch wrote:
> > From: Jean-Christian de Rivaz <jc@eclis.ch>
> > 
> > This USB V.92/V.32bis Controllered Modem have the USB vendor ID 0x0572
> > and device ID 0x1340. It need the NO_UNION_NORMAL quirk to be recognized.
> > 
> > Reference:
> > http://www.conexant.com/servlets/DownloadServlet/DSH-201723-005.pdf?docid=1725&revid=5
> > 
> > Signed-off-by: Jean-Christian de Rivaz <jc@eclis.ch>
> Acked-by: Oliver Neukum <oneukum@SUSE.DE>
> 
> However, this went to the wrong list. Please repost to
> 
> davem@davemloft.net
> netdev@vger.kernel.org
> 
> 	Regards
> 		Oliver
> 

Sorry for the wrong list, I used the scripts/get_maintainer.pl to get the
destinations, as recommanded in Documentation/SubmittingPatches. Is there
something to be fixed there or should I use an other procedure to get the
right destinations?

I will rebase and repost the patch.

Regards,

Jean-Christain


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

* Re: [PATCH] Add CDC-ACM support for the CX93010-2x UCMxx USB Modem
  2012-10-10 19:42 ` Oliver Neukum
  2012-10-10 22:29   ` Jean-Christian de Rivaz
@ 2012-10-17 20:32   ` Greg Kroah-Hartman
  1 sibling, 0 replies; 8+ messages in thread
From: Greg Kroah-Hartman @ 2012-10-17 20:32 UTC (permalink / raw)
  To: Oliver Neukum; +Cc: jc, linux-usb, linux-kernel, davem

On Wed, Oct 10, 2012 at 09:42:32PM +0200, Oliver Neukum wrote:
> On Friday 28 September 2012 16:16:04 jc@eclis.ch wrote:
> > From: Jean-Christian de Rivaz <jc@eclis.ch>
> > 
> > This USB V.92/V.32bis Controllered Modem have the USB vendor ID 0x0572
> > and device ID 0x1340. It need the NO_UNION_NORMAL quirk to be recognized.
> > 
> > Reference:
> > http://www.conexant.com/servlets/DownloadServlet/DSH-201723-005.pdf?docid=1725&revid=5
> > 
> > Signed-off-by: Jean-Christian de Rivaz <jc@eclis.ch>
> Acked-by: Oliver Neukum <oneukum@SUSE.DE>
> 
> However, this went to the wrong list. Please repost to
> 
> davem@davemloft.net
> netdev@vger.kernel.org

No it isn't, this is the cdc-acm driver, not the wdm driver, it was sent
to the right list.  I'll pick it up now.

greg k-h

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

* Re: [PATCH] Add CDC-ACM support for the CX93010-2x UCMxx USB Modem
  2012-10-10 22:29   ` Jean-Christian de Rivaz
@ 2012-10-17 20:32     ` Greg Kroah-Hartman
  2012-10-17 20:40       ` Greg Kroah-Hartman
  0 siblings, 1 reply; 8+ messages in thread
From: Greg Kroah-Hartman @ 2012-10-17 20:32 UTC (permalink / raw)
  To: Jean-Christian de Rivaz; +Cc: Oliver Neukum, linux-usb, linux-kernel, davem

On Thu, Oct 11, 2012 at 12:29:06AM +0200, Jean-Christian de Rivaz wrote:
> On Wed, Oct 10, 2012 at 09:42:32PM +0200, Oliver Neukum wrote:
> > On Friday 28 September 2012 16:16:04 jc@eclis.ch wrote:
> > > From: Jean-Christian de Rivaz <jc@eclis.ch>
> > > 
> > > This USB V.92/V.32bis Controllered Modem have the USB vendor ID 0x0572
> > > and device ID 0x1340. It need the NO_UNION_NORMAL quirk to be recognized.
> > > 
> > > Reference:
> > > http://www.conexant.com/servlets/DownloadServlet/DSH-201723-005.pdf?docid=1725&revid=5
> > > 
> > > Signed-off-by: Jean-Christian de Rivaz <jc@eclis.ch>
> > Acked-by: Oliver Neukum <oneukum@SUSE.DE>
> > 
> > However, this went to the wrong list. Please repost to
> > 
> > davem@davemloft.net
> > netdev@vger.kernel.org
> > 
> > 	Regards
> > 		Oliver
> > 
> 
> Sorry for the wrong list, I used the scripts/get_maintainer.pl to get the
> destinations, as recommanded in Documentation/SubmittingPatches. Is there
> something to be fixed there or should I use an other procedure to get the
> right destinations?
> 
> I will rebase and repost the patch.

No need, you did this correctly.

greg k-h

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

* Re: [PATCH] Add CDC-ACM support for the CX93010-2x UCMxx USB Modem
  2012-10-17 20:32     ` Greg Kroah-Hartman
@ 2012-10-17 20:40       ` Greg Kroah-Hartman
  0 siblings, 0 replies; 8+ messages in thread
From: Greg Kroah-Hartman @ 2012-10-17 20:40 UTC (permalink / raw)
  To: Jean-Christian de Rivaz; +Cc: Oliver Neukum, linux-usb, linux-kernel, davem

On Wed, Oct 17, 2012 at 01:32:39PM -0700, Greg Kroah-Hartman wrote:
> On Thu, Oct 11, 2012 at 12:29:06AM +0200, Jean-Christian de Rivaz wrote:
> > On Wed, Oct 10, 2012 at 09:42:32PM +0200, Oliver Neukum wrote:
> > > On Friday 28 September 2012 16:16:04 jc@eclis.ch wrote:
> > > > From: Jean-Christian de Rivaz <jc@eclis.ch>
> > > > 
> > > > This USB V.92/V.32bis Controllered Modem have the USB vendor ID 0x0572
> > > > and device ID 0x1340. It need the NO_UNION_NORMAL quirk to be recognized.
> > > > 
> > > > Reference:
> > > > http://www.conexant.com/servlets/DownloadServlet/DSH-201723-005.pdf?docid=1725&revid=5
> > > > 
> > > > Signed-off-by: Jean-Christian de Rivaz <jc@eclis.ch>
> > > Acked-by: Oliver Neukum <oneukum@SUSE.DE>
> > > 
> > > However, this went to the wrong list. Please repost to
> > > 
> > > davem@davemloft.net
> > > netdev@vger.kernel.org
> > > 
> > > 	Regards
> > > 		Oliver
> > > 
> > 
> > Sorry for the wrong list, I used the scripts/get_maintainer.pl to get the
> > destinations, as recommanded in Documentation/SubmittingPatches. Is there
> > something to be fixed there or should I use an other procedure to get the
> > right destinations?
> > 
> > I will rebase and repost the patch.
> 
> No need, you did this correctly.

Well, nevermind, David took this already :)

greg k-h

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

* Re: [PATCH] Add CDC-ACM support for the CX93010-2x UCMxx USB Modem
  2012-10-10 22:49 Jean-Christian de Rivaz
@ 2012-10-11 19:20 ` David Miller
  0 siblings, 0 replies; 8+ messages in thread
From: David Miller @ 2012-10-11 19:20 UTC (permalink / raw)
  To: jc; +Cc: netdev, oneukum

From: Jean-Christian de Rivaz <jc@eclis.ch>
Date: Thu, 11 Oct 2012 00:49:02 +0200

> This USB V.92/V.32bis Controllered Modem have the USB vendor ID 0x0572
> and device ID 0x1340. It need the NO_UNION_NORMAL quirk to be recognized.
> 
> Reference:
> http://www.conexant.com/servlets/DownloadServlet/DSH-201723-005.pdf?docid=1725&revid=5
> See idVendor and idProduct in table 6-1. Device Descriptors
> 
> Signed-off-by: Jean-Christian de Rivaz <jc@eclis.ch>

Applied.

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

* [PATCH] Add CDC-ACM support for the CX93010-2x UCMxx USB Modem
@ 2012-10-10 22:49 Jean-Christian de Rivaz
  2012-10-11 19:20 ` David Miller
  0 siblings, 1 reply; 8+ messages in thread
From: Jean-Christian de Rivaz @ 2012-10-10 22:49 UTC (permalink / raw)
  To: davem; +Cc: netdev, oneukum

This USB V.92/V.32bis Controllered Modem have the USB vendor ID 0x0572
and device ID 0x1340. It need the NO_UNION_NORMAL quirk to be recognized.

Reference:
http://www.conexant.com/servlets/DownloadServlet/DSH-201723-005.pdf?docid=1725&revid=5
See idVendor and idProduct in table 6-1. Device Descriptors

Signed-off-by: Jean-Christian de Rivaz <jc@eclis.ch>
---
 drivers/usb/class/cdc-acm.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c
index 36f2be4..981f213 100644
--- a/drivers/usb/class/cdc-acm.c
+++ b/drivers/usb/class/cdc-acm.c
@@ -1551,6 +1551,9 @@ static const struct usb_device_id acm_ids[] = {
 					   Maybe we should define a new
 					   quirk for this. */
 	},
+	{ USB_DEVICE(0x0572, 0x1340), /* Conexant CX93010-2x UCMxx */
+	.driver_info = NO_UNION_NORMAL,
+	},
 	{ USB_DEVICE(0x1bbb, 0x0003), /* Alcatel OT-I650 */
 	.driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */
 	},
-- 
1.7.2.5

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

end of thread, other threads:[~2012-10-17 20:40 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-28 14:16 [PATCH] Add CDC-ACM support for the CX93010-2x UCMxx USB Modem jc
2012-10-10 19:42 ` Oliver Neukum
2012-10-10 22:29   ` Jean-Christian de Rivaz
2012-10-17 20:32     ` Greg Kroah-Hartman
2012-10-17 20:40       ` Greg Kroah-Hartman
2012-10-17 20:32   ` Greg Kroah-Hartman
2012-10-10 22:49 Jean-Christian de Rivaz
2012-10-11 19:20 ` David Miller

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.