diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-09-26 21:54:01 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-09-26 21:54:01 +0000 |
commit | ae27532b9794829f1902a81bc1e18acb57f2447a (patch) | |
tree | 4c847b4c345e86af7575fb931a3f51e3da31c711 /sys/arch | |
parent | fc195fac2afd47b4cc2c8076492b69c528432231 (diff) |
do not match on astro
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hppa/dev/uturn.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/hppa/dev/uturn.c b/sys/arch/hppa/dev/uturn.c index ac89be105e8..9185181fb03 100644 --- a/sys/arch/hppa/dev/uturn.c +++ b/sys/arch/hppa/dev/uturn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uturn.c,v 1.1 2004/09/15 21:32:43 mickey Exp $ */ +/* $OpenBSD: uturn.c,v 1.2 2004/09/26 21:54:00 mickey Exp $ */ /* * Copyright (c) 2004 Michael Shalayeff @@ -76,6 +76,10 @@ uturnmatch(parent, cfdata, aux) ca->ca_type.iodc_sv_model != HPPA_IOA_UTURN) return 0; + if (ca->ca_type.iodc_model == 0x58 && + ca->ca_type.iodc_revision >= 0x20) + return 0; + return 1; } |