diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-01-09 22:37:19 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-01-09 22:37:19 +0000 |
commit | beeb0337b6370731d3379f74e2968979b30aa5d7 (patch) | |
tree | 9f522bfe188cbfc2409a95b145da735e5c30229b /sys | |
parent | 001ceeb315d68e33d0c04b7206f369d9017ed3aa (diff) |
Adjust for USIII to RIO EBus renaming.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/dev/ebus.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc64/dev/ebus.c b/sys/arch/sparc64/dev/ebus.c index 4368d3067f9..a28a6ceb58d 100644 --- a/sys/arch/sparc64/dev/ebus.c +++ b/sys/arch/sparc64/dev/ebus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ebus.c,v 1.14 2006/06/27 20:20:48 jason Exp $ */ +/* $OpenBSD: ebus.c,v 1.15 2007/01/09 22:37:18 kettenis Exp $ */ /* $NetBSD: ebus.c,v 1.24 2001/07/25 03:49:54 eeh Exp $ */ /* @@ -128,10 +128,10 @@ ebus_match(struct device *parent, void *match, void *aux) strcmp(name, "ebus") == 0) return (1); - /* Or a real ebus III */ + /* Or a real RIO ebus */ if (PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE && PCI_VENDOR(pa->pa_id) == PCI_VENDOR_SUN && - PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_SUN_EBUSIII && + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_SUN_RIO_EBUS && strcmp(name, "ebus") == 0) return (1); |