aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/sunxvr2500.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2007-05-07 14:02:51 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-05-07 14:02:51 -0700
commitde9f0cf93fcbccc2de4e6bcb5ef90f997616be3b (patch)
treebd792d6d34ab95e28c69adf3c823dabd394e1368 /drivers/video/sunxvr2500.c
parentMerge git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6 (diff)
downloadlinux-dev-de9f0cf93fcbccc2de4e6bcb5ef90f997616be3b.tar.xz
linux-dev-de9f0cf93fcbccc2de4e6bcb5ef90f997616be3b.zip
[VIDEO] sunxvr2500: Fix PCI device ID table.
Noticed by Meelis Roos. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/video/sunxvr2500.c')
-rw-r--r--drivers/video/sunxvr2500.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/video/sunxvr2500.c b/drivers/video/sunxvr2500.c
index 4010492c6920..4316c7fe8e21 100644
--- a/drivers/video/sunxvr2500.c
+++ b/drivers/video/sunxvr2500.c
@@ -237,14 +237,14 @@ static void __devexit s3d_pci_unregister(struct pci_dev *pdev)
}
static struct pci_device_id s3d_pci_table[] = {
- { /* XVR-2500 */
- PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0032),
- .driver_data = 1,
- },
- { /* XVR-500 */
- PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x07a2),
- .driver_data = 0,
- },
+ { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002c), },
+ { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002d), },
+ { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002e), },
+ { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002f), },
+ { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0030), },
+ { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0031), },
+ { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0032), },
+ { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0033), },
{ 0, }
};