linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: plusb: Add support for National Instruments host-to-host cable
@ 2015-02-16 19:47 Ben Shelton
  2015-02-20 20:14 ` David Miller
  0 siblings, 1 reply; 6+ messages in thread
From: Ben Shelton @ 2015-02-16 19:47 UTC (permalink / raw)
  To: linux-usb, netdev, linux-kernel; +Cc: Ben Shelton

The National Instruments USB Host-to-Host Cable is based on the Prolific
PL-25A1 chipset.  Add its VID/PID so the plusb driver will recognize it.

Signed-off-by: Ben Shelton <ben.shelton@ni.com>
---
 drivers/net/usb/plusb.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/net/usb/plusb.c b/drivers/net/usb/plusb.c
index 3d18bb0..1bfe0fc 100644
--- a/drivers/net/usb/plusb.c
+++ b/drivers/net/usb/plusb.c
@@ -134,6 +134,11 @@ static const struct usb_device_id	products [] = {
 }, {
 	USB_DEVICE(0x050d, 0x258a),     /* Belkin F5U258/F5U279 (PL-25A1) */
 	.driver_info =  (unsigned long) &prolific_info,
+}, {
+	USB_DEVICE(0x3923, 0x7825),     /* National Instruments USB
+					 * Host-to-Host Cable
+					 */
+	.driver_info =  (unsigned long) &prolific_info,
 },
 
 	{ },		// END
-- 
2.3.0


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

* Re: [PATCH] usb: plusb: Add support for National Instruments host-to-host cable
  2015-02-16 19:47 [PATCH] usb: plusb: Add support for National Instruments host-to-host cable Ben Shelton
@ 2015-02-20 20:14 ` David Miller
  2015-02-27 21:26   ` Ben Shelton
  0 siblings, 1 reply; 6+ messages in thread
From: David Miller @ 2015-02-20 20:14 UTC (permalink / raw)
  To: ben.shelton; +Cc: linux-usb, netdev, linux-kernel

From: Ben Shelton <ben.shelton@ni.com>
Date: Mon, 16 Feb 2015 13:47:06 -0600

> The National Instruments USB Host-to-Host Cable is based on the Prolific
> PL-25A1 chipset.  Add its VID/PID so the plusb driver will recognize it.
> 
> Signed-off-by: Ben Shelton <ben.shelton@ni.com>

Applied, thanks.

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

* Re: [PATCH] usb: plusb: Add support for National Instruments host-to-host cable
  2015-02-20 20:14 ` David Miller
@ 2015-02-27 21:26   ` Ben Shelton
  2015-02-27 22:35     ` David Miller
  0 siblings, 1 reply; 6+ messages in thread
From: Ben Shelton @ 2015-02-27 21:26 UTC (permalink / raw)
  To: David Miller; +Cc: linux-usb, netdev, linux-kernel

On 02/20, David Miller wrote:
> From: Ben Shelton <ben.shelton@ni.com>
> Date: Mon, 16 Feb 2015 13:47:06 -0600
> 
> > The National Instruments USB Host-to-Host Cable is based on the Prolific
> > PL-25A1 chipset.  Add its VID/PID so the plusb driver will recognize it.
> > 
> > Signed-off-by: Ben Shelton <ben.shelton@ni.com>
> 
> Applied, thanks.

Hi David,

Is this something you think would go into stable as well?

Thanks,
Ben

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

* Re: [PATCH] usb: plusb: Add support for National Instruments host-to-host cable
  2015-02-27 21:26   ` Ben Shelton
@ 2015-02-27 22:35     ` David Miller
  2015-03-02 16:00       ` Ben Shelton
  0 siblings, 1 reply; 6+ messages in thread
From: David Miller @ 2015-02-27 22:35 UTC (permalink / raw)
  To: ben.shelton; +Cc: linux-usb, netdev, linux-kernel

From: Ben Shelton <ben.shelton@ni.com>
Date: Fri, 27 Feb 2015 15:26:32 -0600

> On 02/20, David Miller wrote:
>> From: Ben Shelton <ben.shelton@ni.com>
>> Date: Mon, 16 Feb 2015 13:47:06 -0600
>> 
>> > The National Instruments USB Host-to-Host Cable is based on the Prolific
>> > PL-25A1 chipset.  Add its VID/PID so the plusb driver will recognize it.
>> > 
>> > Signed-off-by: Ben Shelton <ben.shelton@ni.com>
>> 
>> Applied, thanks.
> 
> Hi David,
> 
> Is this something you think would go into stable as well?

I'm ambivalent.

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

* Re: [PATCH] usb: plusb: Add support for National Instruments host-to-host cable
  2015-02-27 22:35     ` David Miller
@ 2015-03-02 16:00       ` Ben Shelton
  2015-03-02 20:26         ` David Miller
  0 siblings, 1 reply; 6+ messages in thread
From: Ben Shelton @ 2015-03-02 16:00 UTC (permalink / raw)
  To: David Miller; +Cc: linux-usb, netdev, linux-kernel

On 02/27, David Miller wrote:
> From: Ben Shelton <ben.shelton@ni.com>
> Date: Fri, 27 Feb 2015 15:26:32 -0600
> 
> > On 02/20, David Miller wrote:
> >> From: Ben Shelton <ben.shelton@ni.com>
> >> Date: Mon, 16 Feb 2015 13:47:06 -0600
> >> 
> >> > The National Instruments USB Host-to-Host Cable is based on the Prolific
> >> > PL-25A1 chipset.  Add its VID/PID so the plusb driver will recognize it.
> >> > 
> >> > Signed-off-by: Ben Shelton <ben.shelton@ni.com>
> >> 
> >> Applied, thanks.
> > 
> > Hi David,
> > 
> > Is this something you think would go into stable as well?
> 
> I'm ambivalent.

In that case, could you go ahead and apply it to stable as well?

Thanks,
Ben

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

* Re: [PATCH] usb: plusb: Add support for National Instruments host-to-host cable
  2015-03-02 16:00       ` Ben Shelton
@ 2015-03-02 20:26         ` David Miller
  0 siblings, 0 replies; 6+ messages in thread
From: David Miller @ 2015-03-02 20:26 UTC (permalink / raw)
  To: ben.shelton; +Cc: linux-usb, netdev, linux-kernel

From: Ben Shelton <ben.shelton@ni.com>
Date: Mon, 2 Mar 2015 10:00:14 -0600

> On 02/27, David Miller wrote:
>> From: Ben Shelton <ben.shelton@ni.com>
>> Date: Fri, 27 Feb 2015 15:26:32 -0600
>> 
>> > On 02/20, David Miller wrote:
>> >> From: Ben Shelton <ben.shelton@ni.com>
>> >> Date: Mon, 16 Feb 2015 13:47:06 -0600
>> >> 
>> >> > The National Instruments USB Host-to-Host Cable is based on the Prolific
>> >> > PL-25A1 chipset.  Add its VID/PID so the plusb driver will recognize it.
>> >> > 
>> >> > Signed-off-by: Ben Shelton <ben.shelton@ni.com>
>> >> 
>> >> Applied, thanks.
>> > 
>> > Hi David,
>> > 
>> > Is this something you think would go into stable as well?
>> 
>> I'm ambivalent.
> 
> In that case, could you go ahead and apply it to stable as well?

Done.

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

end of thread, other threads:[~2015-03-02 20:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-16 19:47 [PATCH] usb: plusb: Add support for National Instruments host-to-host cable Ben Shelton
2015-02-20 20:14 ` David Miller
2015-02-27 21:26   ` Ben Shelton
2015-02-27 22:35     ` David Miller
2015-03-02 16:00       ` Ben Shelton
2015-03-02 20:26         ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).