|
@@ -63,6 +63,11 @@ DEVICE(flashloader, FLASHLOADER_IDS);
|
|
|
0x01) }
|
|
|
DEVICE(google, GOOGLE_IDS);
|
|
|
|
|
|
+/* Libtransistor USB console */
|
|
|
+#define LIBTRANSISTOR_IDS() \
|
|
|
+ { USB_DEVICE(0x1209, 0x8b00) }
|
|
|
+DEVICE(libtransistor, LIBTRANSISTOR_IDS);
|
|
|
+
|
|
|
/* ViVOpay USB Serial Driver */
|
|
|
#define VIVOPAY_IDS() \
|
|
|
{ USB_DEVICE(0x1d5f, 0x1004) } /* ViVOpay 8800 */
|
|
@@ -110,6 +115,7 @@ static struct usb_serial_driver * const serial_drivers[] = {
|
|
|
&funsoft_device,
|
|
|
&flashloader_device,
|
|
|
&google_device,
|
|
|
+ &libtransistor_device,
|
|
|
&vivopay_device,
|
|
|
&moto_modem_device,
|
|
|
&motorola_tetra_device,
|
|
@@ -126,6 +132,7 @@ static const struct usb_device_id id_table[] = {
|
|
|
FUNSOFT_IDS(),
|
|
|
FLASHLOADER_IDS(),
|
|
|
GOOGLE_IDS(),
|
|
|
+ LIBTRANSISTOR_IDS(),
|
|
|
VIVOPAY_IDS(),
|
|
|
MOTO_IDS(),
|
|
|
MOTOROLA_TETRA_IDS(),
|