summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2004-09-18 07:02:24 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2004-09-18 07:02:24 +0000
commit72d22a93df8adc22d4554f559f0287df68f0d24f (patch)
tree360ac579d911ae8cb7c928b81c894e44944c5f7e /sys
parentcb8c8033d1b11e49d8e16a84100c97e9487251cc (diff)
do not match on elroy and mercury bridges
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/hppa/dev/dino.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/arch/hppa/dev/dino.c b/sys/arch/hppa/dev/dino.c
index c8c96a60650..0498b50fc5d 100644
--- a/sys/arch/hppa/dev/dino.c
+++ b/sys/arch/hppa/dev/dino.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dino.c,v 1.14 2004/09/15 21:30:21 mickey Exp $ */
+/* $OpenBSD: dino.c,v 1.15 2004/09/18 07:02:23 mickey Exp $ */
/*
* Copyright (c) 2003 Michael Shalayeff
@@ -143,6 +143,10 @@ dinomatch(parent, cfdata, aux)
ca->ca_type.iodc_sv_model != HPPA_BRIDGE_DINO)
return (0);
+ /* do not match on the elroy family */
+ if (ca->ca_type.iodc_model == 0x78)
+ return (0);
+
return (1);
}
@@ -1572,9 +1576,6 @@ dinoattach(parent, self, aux)
}
break;
- /* case 0x782: p = "Elroy"; */
- /* case 0x783: p = "Mercury"; */
- /* case 0x783: p = "Quicksilver"; AGP */
default:
p = "Mojo";
break;