Skip to content

Commit

Permalink
[PATCH] USB: new SIS device id
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Thomas Winischhofer authored and Greg K-H committed Apr 19, 2005
1 parent d6427cf commit 7ab7c34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/usb/misc/sisusbvga/sisusb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) },
{ }
};

Expand All @@ -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)
Expand Down

0 comments on commit 7ab7c34

Please sign in to comment.