Skip to content

Commit dd92c8a

Browse files
oneukumjhovold
authored andcommitted
USB: serial: simple: add Kaufmann RKS+CAN VCP
Add the device and product ID for this CAN bus interface / license dongle. The device is usable either directly from user space or can be attached to a kernel CAN interface with slcan_attach. Reported-by: Kaufmann Automotive GmbH <info@kaufmann-automotive.ch> Tested-by: Kaufmann Automotive GmbH <info@kaufmann-automotive.ch> Signed-off-by: Oliver Neukum <oneukum@suse.com> [ johan: amend commit message and move entries in sort order ] Cc: stable@vger.kernel.org Signed-off-by: Johan Hovold <johan@kernel.org>
1 parent 857ea90 commit dd92c8a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

drivers/usb/serial/usb-serial-simple.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,11 @@ DEVICE(flashloader, FLASHLOADER_IDS);
6363
0x01) }
6464
DEVICE(google, GOOGLE_IDS);
6565

66+
/* KAUFMANN RKS+CAN VCP */
67+
#define KAUFMANN_IDS() \
68+
{ USB_DEVICE(0x16d0, 0x0870) }
69+
DEVICE(kaufmann, KAUFMANN_IDS);
70+
6671
/* Libtransistor USB console */
6772
#define LIBTRANSISTOR_IDS() \
6873
{ USB_DEVICE(0x1209, 0x8b00) }
@@ -124,6 +129,7 @@ static struct usb_serial_driver * const serial_drivers[] = {
124129
&funsoft_device,
125130
&flashloader_device,
126131
&google_device,
132+
&kaufmann_device,
127133
&libtransistor_device,
128134
&vivopay_device,
129135
&moto_modem_device,
@@ -142,6 +148,7 @@ static const struct usb_device_id id_table[] = {
142148
FUNSOFT_IDS(),
143149
FLASHLOADER_IDS(),
144150
GOOGLE_IDS(),
151+
KAUFMANN_IDS(),
145152
LIBTRANSISTOR_IDS(),
146153
VIVOPAY_IDS(),
147154
MOTO_IDS(),

0 commit comments

Comments
 (0)