aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/misc
diff options
context:
space:
mode:
authorThomas Winischhofer <thomas@winischhofer.net>2005-04-18 20:39:28 -0400
committerGreg K-H <gregkh@suse.de>2005-04-18 20:39:28 -0400
commit7ab7c34c90797b9df52720720ab5d5e9edd05114 (patch)
tree1fff72f9091c63688be9cf2565e404d8ca9ae623 /drivers/usb/misc
parentd6427cf7ea5dc75be26074a573b25d5906c992bd (diff)
[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/misc')
-rw-r--r--drivers/usb/misc/sisusbvga/sisusb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/misc/sisusbvga/sisusb.c b/drivers/usb/misc/sisusbvga/sisusb.c
index be163b330167..57b82d53a940 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)
3104 3104
3105static struct usb_device_id sisusb_table [] = { 3105static struct usb_device_id sisusb_table [] = {
3106 { USB_DEVICE(0x0711, 0x0900) }, 3106 { USB_DEVICE(0x0711, 0x0900) },
3107 { USB_DEVICE(0x182d, 0x021c) },
3107 { } 3108 { }
3108}; 3109};
3109 3110
@@ -3114,7 +3115,7 @@ static struct usb_driver sisusb_driver = {
3114 .name = "sisusb", 3115 .name = "sisusb",
3115 .probe = sisusb_probe, 3116 .probe = sisusb_probe,
3116 .disconnect = sisusb_disconnect, 3117 .disconnect = sisusb_disconnect,
3117 .id_table = sisusb_table 3118 .id_table = sisusb_table,
3118}; 3119};
3119 3120
3120static int __init usb_sisusb_init(void) 3121static int __init usb_sisusb_init(void)