diff options
author | Thomas Winischhofer <thomas@winischhofer.net> | 2005-04-18 17:39:28 -0700 |
---|---|---|
committer | Greg K-H <gregkh@suse.de> | 2005-04-18 17:39:28 -0700 |
commit | 7ab7c34c90797b9df52720720ab5d5e9edd05114 (patch) | |
tree | 1fff72f9091c63688be9cf2565e404d8ca9ae623 /drivers/usb | |
parent | d6427cf7ea5dc75be26074a573b25d5906c992bd (diff) | |
download | op-kernel-dev-7ab7c34c90797b9df52720720ab5d5e9edd05114.zip op-kernel-dev-7ab7c34c90797b9df52720720ab5d5e9edd05114.tar.gz |
[PATCH] USB: new SIS device id
the attached patch adds another USB device ID to the list. Seems the
device is known under multiple IDs.
Signed-off-by: Thomas Winischhofer <thomas@winischhofer.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/misc/sisusbvga/sisusb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/misc/sisusbvga/sisusb.c b/drivers/usb/misc/sisusbvga/sisusb.c index be163b3..57b82d5 100644 --- a/drivers/usb/misc/sisusbvga/sisusb.c +++ b/drivers/usb/misc/sisusbvga/sisusb.c @@ -3104,6 +3104,7 @@ static void sisusb_disconnect(struct usb_interface *intf) static struct usb_device_id sisusb_table [] = { { USB_DEVICE(0x0711, 0x0900) }, + { USB_DEVICE(0x182d, 0x021c) }, { } }; @@ -3114,7 +3115,7 @@ static struct usb_driver sisusb_driver = { .name = "sisusb", .probe = sisusb_probe, .disconnect = sisusb_disconnect, - .id_table = sisusb_table + .id_table = sisusb_table, }; static int __init usb_sisusb_init(void) |