Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4899c054 authored by Doug Goldstein's avatar Doug Goldstein Committed by Johan Hovold
Browse files

USB: ftdi_sio: Added custom PID for Synapse Wireless product



Synapse Wireless uses the FTDI VID with a custom PID of 0x9090 for their
SNAP Stick 200 product.

Signed-off-by: default avatarDoug Goldstein <cardoe@cardoe.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: default avatarJohan Hovold <johan@kernel.org>
parent 06e5801b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -604,6 +604,7 @@ static const struct usb_device_id id_table_combined[] = {
		.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
	{ USB_DEVICE(FTDI_VID, FTDI_NT_ORIONLXM_PID),
		.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
	{ USB_DEVICE(FTDI_VID, FTDI_SYNAPSE_SS200_PID) },
	/*
	 * ELV devices:
	 */
+6 −0
Original line number Diff line number Diff line
@@ -561,6 +561,12 @@
 */
#define FTDI_NT_ORIONLXM_PID	0x7c90	/* OrionLXm Substation Automation Platform */

/*
 * Synapse Wireless product ids (FTDI_VID)
 * http://www.synapse-wireless.com
 */
#define FTDI_SYNAPSE_SS200_PID 0x9090 /* SS200 - SNAP Stick 200 */


/********************************/
/** third-party VID/PID combos **/