diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2007-07-10 20:22:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-10 20:51:13 -0400 |
commit | c14d444b55f285063a4018c10d521614b70b581a (patch) | |
tree | 6bcf518665f937f46247ab99ffe6744bda6d8b8d /drivers/char/sx.c | |
parent | 64c70b1cf43de158282bc1675918d503e5b15cc1 (diff) |
sx: switch subven and subid values
sx.c is failing to locate Graham's card.
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Cc: Graham Murray <gmurray@webwayone.co.uk>
Cc: <stable@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/sx.c')
-rw-r--r-- | drivers/char/sx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/sx.c b/drivers/char/sx.c index 1da92a689ae4..85a23283dff5 100644 --- a/drivers/char/sx.c +++ b/drivers/char/sx.c | |||
@@ -2721,9 +2721,9 @@ static void __devexit sx_pci_remove(struct pci_dev *pdev) | |||
2721 | its because the standard requires it. So check for SUBVENDOR_ID. */ | 2721 | its because the standard requires it. So check for SUBVENDOR_ID. */ |
2722 | static struct pci_device_id sx_pci_tbl[] = { | 2722 | static struct pci_device_id sx_pci_tbl[] = { |
2723 | { PCI_VENDOR_ID_SPECIALIX, PCI_DEVICE_ID_SPECIALIX_SX_XIO_IO8, | 2723 | { PCI_VENDOR_ID_SPECIALIX, PCI_DEVICE_ID_SPECIALIX_SX_XIO_IO8, |
2724 | .subvendor = 0x0200,.subdevice = PCI_ANY_ID }, | 2724 | .subvendor = PCI_ANY_ID, .subdevice = 0x0200 }, |
2725 | { PCI_VENDOR_ID_SPECIALIX, PCI_DEVICE_ID_SPECIALIX_SX_XIO_IO8, | 2725 | { PCI_VENDOR_ID_SPECIALIX, PCI_DEVICE_ID_SPECIALIX_SX_XIO_IO8, |
2726 | .subvendor = 0x0300,.subdevice = PCI_ANY_ID }, | 2726 | .subvendor = PCI_ANY_ID, .subdevice = 0x0300 }, |
2727 | { 0 } | 2727 | { 0 } |
2728 | }; | 2728 | }; |
2729 | 2729 | ||