Commit 207c47e1 authored by Thomas Riewe's avatar Thomas Riewe Committed by Greg Kroah-Hartman

[PATCH] drivers/usb/serial/ftdi_sio: add PID/VID

We would like to add a PID for the Pyramid Appliance Display, which works
on USB via FTDI_SIO.
Signed-off-by: default avatarThomas Riewe <thomasr@pyramid.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>

 drivers/usb/serial/ftdi_sio.c |    1 +
 drivers/usb/serial/ftdi_sio.h |    3 +++
 2 files changed, 4 insertions(+)
parent 74ad9bd2
...@@ -411,6 +411,7 @@ static struct usb_device_id id_table_combined [] = { ...@@ -411,6 +411,7 @@ static struct usb_device_id id_table_combined [] = {
{ USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) }, { USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) },
{ USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) }, { USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) },
{ USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) }, { USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) },
{ USB_DEVICE(FTDI_VID, FTDI_PYRAMID_PID) },
/* /*
* These will probably use user-space drivers. Uncomment them if * These will probably use user-space drivers. Uncomment them if
* you need them or use the user-specified vendor/product module * you need them or use the user-specified vendor/product module
......
...@@ -342,6 +342,9 @@ ...@@ -342,6 +342,9 @@
#define EVOLUTION_VID 0xDEEE /* Vendor ID */ #define EVOLUTION_VID 0xDEEE /* Vendor ID */
#define EVOLUTION_ER1_PID 0x0300 /* ER1 Control Module */ #define EVOLUTION_ER1_PID 0x0300 /* ER1 Control Module */
/* Pyramid Computer GmbH */
#define FTDI_PYRAMID_PID 0xE6C8 /* Pyramid Appliance Display */
/* Commands */ /* Commands */
#define FTDI_SIO_RESET 0 /* Reset the port */ #define FTDI_SIO_RESET 0 /* Reset the port */
#define FTDI_SIO_MODEM_CTRL 1 /* Set the modem control register */ #define FTDI_SIO_MODEM_CTRL 1 /* Set the modem control register */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment