diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-03-23 12:10:54 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-03-23 12:10:54 +0000 |
commit | 26f528257f76f2203ec455d7ef44887cd21308b5 (patch) | |
tree | 37e65897bd337ebbf70a570ee460c8cdf649203d /sys/arch | |
parent | 027b1bfbbbbd02f0dd9e67e795c83cc218a3b446 (diff) |
Use new defines from pcidevs to match Expert3D.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc64/dev/vgafb.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/sys/arch/sparc64/dev/vgafb.c b/sys/arch/sparc64/dev/vgafb.c index 7166ae2353a..26e01b9a9ea 100644 --- a/sys/arch/sparc64/dev/vgafb.c +++ b/sys/arch/sparc64/dev/vgafb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vgafb.c,v 1.51 2008/03/21 17:14:12 miod Exp $ */ +/* $OpenBSD: vgafb.c,v 1.52 2008/03/23 12:10:53 miod Exp $ */ /* * Copyright (c) 2001 Jason L. Wright (jason@thought.net) @@ -112,12 +112,10 @@ extern int allowaperture; #endif static const struct pci_matchid ifb_devices[] = { - { PCI_VENDOR_INTERGRAPH, 0x108 }, /* XXX */ - { PCI_VENDOR_INTERGRAPH, 0x140 }, /* XXX */ - { PCI_VENDOR_INTERGRAPH, PCI_PRODUCT_INTERGRAPH_EXPERT3D }, - { PCI_VENDOR_3DLABS, 0x7a1 }, /* Wildcat III 6210 */ - { PCI_VENDOR_3DLABS, 0x7a2 }, /* Sun XVR-500 */ - { PCI_VENDOR_3DLABS, 0x7a3 }, /* Wildcat IV 7210 */ + { PCI_VENDOR_INTERGRAPH, PCI_PRODUCT_INTERGRAPH_EXPERT3D }, + { PCI_VENDOR_3DLABS, PCI_PRODUCT_3DLABS_WILDCAT_6210 }, + { PCI_VENDOR_3DLABS, PCI_PRODUCT_3DLABS_WILDCAT_5110 },/* Sun XVR-500 */ + { PCI_VENDOR_3DLABS, PCI_PRODUCT_3DLABS_WILDCAT_7210 } }; int |