* Patch for B&B Electronics USPLT4-LS
@ 2010-03-17 2:10 Christopher Hoover
2010-03-17 4:39 ` Greg KH
0 siblings, 1 reply; 4+ messages in thread
From: Christopher Hoover @ 2010-03-17 2:10 UTC (permalink / raw)
To: Greg Kroah-Hartman, linux-usb, linux-kernel
Adds support for B&B Electronics USPLT4-LS.
Cheers,
Christopher.
-ch
ch@murgatroid.com
diff --exclude='*~' -Naur linux-2.6.30.orig/drivers/usb/serial/ftdi_sio.c linux-2.6.30/drivers/usb/serial/ftdi_sio.c
--- linux-2.6.30.orig/drivers/usb/serial/ftdi_sio.c 2009-06-09 20:05:27.000000000 -0700
+++ linux-2.6.30/drivers/usb/serial/ftdi_sio.c 2010-03-16 09:24:34.000000000 -0700
@@ -587,6 +587,7 @@
{ USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) },
{ USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) },
{ USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) },
+ { USB_DEVICE(BANDB_VID, BANDB_USPTL4LS_PID) },
{ USB_DEVICE(FTDI_VID, EVER_ECO_PRO_CDS) },
{ USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_1_PID) },
{ USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_2_PID) },
diff --exclude='*~' -Naur linux-2.6.30.orig/drivers/usb/serial/ftdi_sio.h linux-2.6.30/drivers/usb/serial/ftdi_sio.h
--- linux-2.6.30.orig/drivers/usb/serial/ftdi_sio.h 2009-06-09 20:05:27.000000000 -0700
+++ linux-2.6.30/drivers/usb/serial/ftdi_sio.h 2010-03-16 09:24:05.000000000 -0700
@@ -651,6 +651,7 @@
#define BANDB_USOTL4_PID 0xAC01 /* USOTL4 Isolated RS-485 Converter */
#define BANDB_USTL4_PID 0xAC02 /* USTL4 RS-485 Converter */
#define BANDB_USO9ML2_PID 0xAC03 /* USO9ML2 Isolated RS-232 Converter */
+#define BANDB_USPTL4LS_PID 0xAC12 /* USPTL4-LS RS-422/485 Adapter */
/*
* RM Michaelides CANview USB (http://www.rmcan.com)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Patch for B&B Electronics USPLT4-LS
2010-03-17 2:10 Patch for B&B Electronics USPLT4-LS Christopher Hoover
@ 2010-03-17 4:39 ` Greg KH
2010-03-17 6:38 ` Christopher Hoover
0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2010-03-17 4:39 UTC (permalink / raw)
To: Christopher Hoover; +Cc: linux-usb, linux-kernel
On Tue, Mar 16, 2010 at 07:10:34PM -0700, Christopher Hoover wrote:
> Adds support for B&B Electronics USPLT4-LS.
Can you resend this with a "Signed-off-by:" line so that I can apply the
patch? The file, Documentation/SubmittingPatches shows what is needed
here.
> diff --exclude='*~' -Naur linux-2.6.30.orig/drivers/usb/serial/ftdi_sio.c linux-2.6.30/drivers/usb/serial/ftdi_sio.c
Can you make the patch against 2.6.33 or even 2.6.34-rc1 if possible?
The code in this area has changed so you will have to move your patch
around a bit.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Patch for B&B Electronics USPLT4-LS
2010-03-17 4:39 ` Greg KH
@ 2010-03-17 6:38 ` Christopher Hoover
2010-03-17 13:37 ` Greg KH
0 siblings, 1 reply; 4+ messages in thread
From: Christopher Hoover @ 2010-03-17 6:38 UTC (permalink / raw)
To: Greg KH; +Cc: linux-usb, linux-kernel
On 3/16/2010 9:39 PM, Greg KH wrote:
> On Tue, Mar 16, 2010 at 07:10:34PM -0700, Christopher Hoover wrote:
>
>> Adds support for B&B Electronics USPLT4-LS.
>>
> Can you resend this with a "Signed-off-by:" line so that I can apply the
> patch? The file, Documentation/SubmittingPatches shows what is needed
> here.
>
>
>> diff --exclude='*~' -Naur linux-2.6.30.orig/drivers/usb/serial/ftdi_sio.c linux-2.6.30/drivers/usb/serial/ftdi_sio.c
>>
> Can you make the patch against 2.6.33 or even 2.6.34-rc1 if possible?
> The code in this area has changed so you will have to move your patch
> around a bit.
>
> thanks,
>
> greg k-h
>
>
It looks to me that 2.6.34-rc1 includes the equivalent of the patch I sent.
-ch
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Patch for B&B Electronics USPLT4-LS
2010-03-17 6:38 ` Christopher Hoover
@ 2010-03-17 13:37 ` Greg KH
0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2010-03-17 13:37 UTC (permalink / raw)
To: Christopher Hoover; +Cc: linux-usb, linux-kernel
On Tue, Mar 16, 2010 at 11:38:08PM -0700, Christopher Hoover wrote:
> On 3/16/2010 9:39 PM, Greg KH wrote:
> >On Tue, Mar 16, 2010 at 07:10:34PM -0700, Christopher Hoover wrote:
> >>Adds support for B&B Electronics USPLT4-LS.
> >Can you resend this with a "Signed-off-by:" line so that I can apply the
> >patch? The file, Documentation/SubmittingPatches shows what is needed
> >here.
> >
> >>diff --exclude='*~' -Naur linux-2.6.30.orig/drivers/usb/serial/ftdi_sio.c linux-2.6.30/drivers/usb/serial/ftdi_sio.c
> >Can you make the patch against 2.6.33 or even 2.6.34-rc1 if possible?
> >The code in this area has changed so you will have to move your patch
> >around a bit.
> >
> >thanks,
> >
> >greg k-h
> >
>
> It looks to me that 2.6.34-rc1 includes the equivalent of the patch I sent.
Great, thanks for checking.
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-03-17 13:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-17 2:10 Patch for B&B Electronics USPLT4-LS Christopher Hoover
2010-03-17 4:39 ` Greg KH
2010-03-17 6:38 ` Christopher Hoover
2010-03-17 13:37 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox