diff options
author | Thomas Winischhofer <thomas@winischhofer.net> | 2005-04-18 20:39:28 -0400 |
---|---|---|
committer | Greg K-H <gregkh@suse.de> | 2005-04-18 20:39:28 -0400 |
commit | 7ab7c34c90797b9df52720720ab5d5e9edd05114 (patch) | |
tree | 1fff72f9091c63688be9cf2565e404d8ca9ae623 /drivers/usb/misc | |
parent | d6427cf7ea5dc75be26074a573b25d5906c992bd (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.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 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 | ||
3105 | static struct usb_device_id sisusb_table [] = { | 3105 | static 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 | ||
3120 | static int __init usb_sisusb_init(void) | 3121 | static int __init usb_sisusb_init(void) |