From fc192b78e8f335b9954b5f1868dc8c6513610ffa Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Thu, 7 Mar 2019 13:32:27 +0100 Subject: [PATCH] 3.18-stable patches added patches: usb-serial-cp210x-add-id-for-ingenico-3070.patch --- queue-3.18/series | 1 + ...rial-cp210x-add-id-for-ingenico-3070.patch | 39 +++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 queue-3.18/usb-serial-cp210x-add-id-for-ingenico-3070.patch diff --git a/queue-3.18/series b/queue-3.18/series index 6b54d930029..02da54b6e36 100644 --- a/queue-3.18/series +++ b/queue-3.18/series @@ -40,3 +40,4 @@ cfg80211-extend-range-deviation-for-dmg.patch kvm-nsvm-clear-events-pending-from-svm_complete_inte.patch mmc-spi-fix-card-detection-during-probe.patch mm-enforce-min-addr-even-if-capable-in-expand_downwards.patch +usb-serial-cp210x-add-id-for-ingenico-3070.patch diff --git a/queue-3.18/usb-serial-cp210x-add-id-for-ingenico-3070.patch b/queue-3.18/usb-serial-cp210x-add-id-for-ingenico-3070.patch new file mode 100644 index 00000000000..fa80e2bfce3 --- /dev/null +++ b/queue-3.18/usb-serial-cp210x-add-id-for-ingenico-3070.patch @@ -0,0 +1,39 @@ +From dd9d3d86b08d6a106830364879c42c78db85389c Mon Sep 17 00:00:00 2001 +From: Ivan Mironov +Date: Wed, 6 Feb 2019 21:14:13 +0500 +Subject: USB: serial: cp210x: add ID for Ingenico 3070 + +From: Ivan Mironov + +commit dd9d3d86b08d6a106830364879c42c78db85389c upstream. + +Here is how this device appears in kernel log: + + usb 3-1: new full-speed USB device number 18 using xhci_hcd + usb 3-1: New USB device found, idVendor=0b00, idProduct=3070 + usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 + usb 3-1: Product: Ingenico 3070 + usb 3-1: Manufacturer: Silicon Labs + usb 3-1: SerialNumber: 0001 + +Apparently this is a POS terminal with embedded USB-to-Serial converter. + +Cc: stable@vger.kernel.org +Signed-off-by: Ivan Mironov +Signed-off-by: Johan Hovold +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/usb/serial/cp210x.c | 1 + + 1 file changed, 1 insertion(+) + +--- a/drivers/usb/serial/cp210x.c ++++ b/drivers/usb/serial/cp210x.c +@@ -57,6 +57,7 @@ static const struct usb_device_id id_tab + { USB_DEVICE(0x08e6, 0x5501) }, /* Gemalto Prox-PU/CU contactless smartcard reader */ + { USB_DEVICE(0x08FD, 0x000A) }, /* Digianswer A/S , ZigBee/802.15.4 MAC Device */ + { USB_DEVICE(0x0908, 0x01FF) }, /* Siemens RUGGEDCOM USB Serial Console */ ++ { USB_DEVICE(0x0B00, 0x3070) }, /* Ingenico 3070 */ + { USB_DEVICE(0x0BED, 0x1100) }, /* MEI (TM) Cashflow-SC Bill/Voucher Acceptor */ + { USB_DEVICE(0x0BED, 0x1101) }, /* MEI series 2000 Combo Acceptor */ + { USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */ -- 2.39.5