diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1999-06-15 02:40:06 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1999-06-15 02:40:06 +0000 |
commit | 134699f937906ca00399b6f3289e3359eadb2174 (patch) | |
tree | 0e28ae74a8b7e0c642e9ab7e3f8c89fd01af1168 /sys | |
parent | f352a210d489251d188bf6105cae7e702faf2d9e (diff) |
Use proper defines for vendor id and device id (pci) instead of constants.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/powerpc/isa/isabus.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/powerpc/isa/isabus.c b/sys/arch/powerpc/isa/isabus.c index 005d49ccff2..0675a99ab90 100644 --- a/sys/arch/powerpc/isa/isabus.c +++ b/sys/arch/powerpc/isa/isabus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isabus.c,v 1.11 1999/06/13 17:17:30 rahnds Exp $ */ +/* $OpenBSD: isabus.c,v 1.12 1999/06/15 02:40:05 rahnds Exp $ */ /*- * Copyright (c) 1995 Per Fogelstrom @@ -164,8 +164,8 @@ isabrmatch(parent, cfdata, aux) if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL && PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_SIO) return (1); - if (PCI_VENDOR(pa->pa_id) == 0x10ad && - PCI_PRODUCT(pa->pa_id) == 0x0565) + if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_SYMPHONY && + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_SYMPHONY_82C565) return (1); } return (0); |