linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] USB: serial: cp210x: add device ids for NCR products
@ 2022-02-01 10:42 Johan Hovold
  2022-02-01 10:42 ` [PATCH 1/2] USB: serial: cp210x: add NCR Retail IO box id Johan Hovold
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Johan Hovold @ 2022-02-01 10:42 UTC (permalink / raw)
  To: Johan Hovold; +Cc: Russell, Scott, linux-usb, linux-kernel

This series adds a couple of new ids to the cp210x driver for devices
found in various NCR products.

Johan


Johan Hovold (2):
  USB: serial: cp210x: add NCR Retail IO box id
  USB: serial: cp210x: add CPI Bulk Coin Recycler id

 drivers/usb/serial/cp210x.c | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.34.1


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

* [PATCH 1/2] USB: serial: cp210x: add NCR Retail IO box id
  2022-02-01 10:42 [PATCH 0/2] USB: serial: cp210x: add device ids for NCR products Johan Hovold
@ 2022-02-01 10:42 ` Johan Hovold
  2022-02-01 10:42 ` [PATCH 2/2] USB: serial: cp210x: add CPI Bulk Coin Recycler id Johan Hovold
  2022-02-01 10:50 ` [PATCH 0/2] USB: serial: cp210x: add device ids for NCR products Greg KH
  2 siblings, 0 replies; 5+ messages in thread
From: Johan Hovold @ 2022-02-01 10:42 UTC (permalink / raw)
  To: Johan Hovold; +Cc: Russell, Scott, linux-usb, linux-kernel, stable

Add the device id for NCR's Retail IO box (CP2105) used in NCR FastLane
SelfServ Checkout - R6C:

	https://www.ncr.com/product-catalog/ncr-fastlane-selfserv-checkout-r6c

Reported-by: Scott Russell <Scott.Russell2@ncr.com>
Cc: stable@vger.kernel.org
Signed-off-by: Johan Hovold <johan@kernel.org>
---
 drivers/usb/serial/cp210x.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c
index 8a60c0d56863..5172e7ac16fd 100644
--- a/drivers/usb/serial/cp210x.c
+++ b/drivers/usb/serial/cp210x.c
@@ -51,6 +51,7 @@ static void cp210x_enable_event_mode(struct usb_serial_port *port);
 static void cp210x_disable_event_mode(struct usb_serial_port *port);
 
 static const struct usb_device_id id_table[] = {
+	{ USB_DEVICE(0x0404, 0x034C) },	/* NCR Retail IO Box */
 	{ USB_DEVICE(0x045B, 0x0053) }, /* Renesas RX610 RX-Stick */
 	{ USB_DEVICE(0x0471, 0x066A) }, /* AKTAKOM ACE-1001 cable */
 	{ USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */
-- 
2.34.1


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

* [PATCH 2/2] USB: serial: cp210x: add CPI Bulk Coin Recycler id
  2022-02-01 10:42 [PATCH 0/2] USB: serial: cp210x: add device ids for NCR products Johan Hovold
  2022-02-01 10:42 ` [PATCH 1/2] USB: serial: cp210x: add NCR Retail IO box id Johan Hovold
@ 2022-02-01 10:42 ` Johan Hovold
  2022-02-01 10:50 ` [PATCH 0/2] USB: serial: cp210x: add device ids for NCR products Greg KH
  2 siblings, 0 replies; 5+ messages in thread
From: Johan Hovold @ 2022-02-01 10:42 UTC (permalink / raw)
  To: Johan Hovold; +Cc: Russell, Scott, linux-usb, linux-kernel, stable

Add the device id for the Crane Payment Innovation / Money Controls Bulk
Coin Recycler:

	https://www.cranepi.com/en/system/files/Support/OM_BCR_EN_V1-04_0.pdf

Reported-by: Scott Russell <Scott.Russell2@ncr.com>
Cc: stable@vger.kernel.org
Signed-off-by: Johan Hovold <johan@kernel.org>
---
 drivers/usb/serial/cp210x.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c
index 5172e7ac16fd..a27f7efcec6a 100644
--- a/drivers/usb/serial/cp210x.c
+++ b/drivers/usb/serial/cp210x.c
@@ -69,6 +69,7 @@ static const struct usb_device_id id_table[] = {
 	{ USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */
 	{ USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */
 	{ USB_DEVICE(0x0FDE, 0xCA05) }, /* OWL Wireless Electricity Monitor CM-160 */
+	{ USB_DEVICE(0x106F, 0x0003) },	/* CPI / Money Controls Bulk Coin Recycler */
 	{ USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */
 	{ USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */
 	{ USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */
-- 
2.34.1


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

* Re: [PATCH 0/2] USB: serial: cp210x: add device ids for NCR products
  2022-02-01 10:42 [PATCH 0/2] USB: serial: cp210x: add device ids for NCR products Johan Hovold
  2022-02-01 10:42 ` [PATCH 1/2] USB: serial: cp210x: add NCR Retail IO box id Johan Hovold
  2022-02-01 10:42 ` [PATCH 2/2] USB: serial: cp210x: add CPI Bulk Coin Recycler id Johan Hovold
@ 2022-02-01 10:50 ` Greg KH
  2022-02-01 11:02   ` Johan Hovold
  2 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2022-02-01 10:50 UTC (permalink / raw)
  To: Johan Hovold; +Cc: Russell, Scott, linux-usb, linux-kernel

On Tue, Feb 01, 2022 at 11:42:51AM +0100, Johan Hovold wrote:
> This series adds a couple of new ids to the cp210x driver for devices
> found in various NCR products.
> 
> Johan
> 
> 
> Johan Hovold (2):
>   USB: serial: cp210x: add NCR Retail IO box id
>   USB: serial: cp210x: add CPI Bulk Coin Recycler id
> 
>  drivers/usb/serial/cp210x.c | 2 ++
>  1 file changed, 2 insertions(+)

Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

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

* Re: [PATCH 0/2] USB: serial: cp210x: add device ids for NCR products
  2022-02-01 10:50 ` [PATCH 0/2] USB: serial: cp210x: add device ids for NCR products Greg KH
@ 2022-02-01 11:02   ` Johan Hovold
  0 siblings, 0 replies; 5+ messages in thread
From: Johan Hovold @ 2022-02-01 11:02 UTC (permalink / raw)
  To: Greg KH; +Cc: Russell, Scott, linux-usb, linux-kernel

On Tue, Feb 01, 2022 at 11:50:57AM +0100, Greg Kroah-Hartman wrote:
> On Tue, Feb 01, 2022 at 11:42:51AM +0100, Johan Hovold wrote:
> > This series adds a couple of new ids to the cp210x driver for devices
> > found in various NCR products.
> > 
> > Johan
> > 
> > 
> > Johan Hovold (2):
> >   USB: serial: cp210x: add NCR Retail IO box id
> >   USB: serial: cp210x: add CPI Bulk Coin Recycler id
> > 
> >  drivers/usb/serial/cp210x.c | 2 ++
> >  1 file changed, 2 insertions(+)
> 
> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Thanks for reviewing. Now applied.

Johan

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

end of thread, other threads:[~2022-02-01 11:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-01 10:42 [PATCH 0/2] USB: serial: cp210x: add device ids for NCR products Johan Hovold
2022-02-01 10:42 ` [PATCH 1/2] USB: serial: cp210x: add NCR Retail IO box id Johan Hovold
2022-02-01 10:42 ` [PATCH 2/2] USB: serial: cp210x: add CPI Bulk Coin Recycler id Johan Hovold
2022-02-01 10:50 ` [PATCH 0/2] USB: serial: cp210x: add device ids for NCR products Greg KH
2022-02-01 11:02   ` Johan Hovold

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).