diff options
author | 2002-09-23 17:43:20 +0000 | |
---|---|---|
committer | 2002-09-23 17:43:20 +0000 | |
commit | 6e5150b8a4096c8bf43201645188545adaece172 (patch) | |
tree | 3461fbd81f97f5da93d1c2b7c656bfc99e5c6797 | |
parent | openssh will be 3.5, right? (diff) | |
download | wireguard-openbsd-6e5150b8a4096c8bf43201645188545adaece172.tar.xz wireguard-openbsd-6e5150b8a4096c8bf43201645188545adaece172.zip |
parisc level 0x10 is just an overclocked 0xe
-rw-r--r-- | sys/arch/hppa/hppa/machdep.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/hppa/hppa/machdep.c b/sys/arch/hppa/hppa/machdep.c index 938e1a57eee..bc8ca2288a5 100644 --- a/sys/arch/hppa/hppa/machdep.c +++ b/sys/arch/hppa/hppa/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.80 2002/09/17 03:51:49 mickey Exp $ */ +/* $OpenBSD: machdep.c,v 1.81 2002/09/23 17:43:20 mickey Exp $ */ /* * Copyright (c) 1999-2002 Michael Shalayeff @@ -494,6 +494,9 @@ hppa_init(start) #ifdef COMPAT_HPUX cpu_model_hpux = HPUX_SYSCONF_CPUPA11; #endif + /* this one is just a 100MHz pcxl */ + if (lev == 0x10) + lev = 0xe; break; case 8: q = "2.0"; |