diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2006-05-28 23:08:08 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2006-05-28 23:08:08 +0000 |
commit | cb2c6487f607d253f80e48b75dfec26355db4bdd (patch) | |
tree | 7071dab637ee30b509624fc115ae5da5efac05cc /sys/arch | |
parent | a840a34f9caf3ef417a2d1b3b90443d7ce91f9c9 (diff) |
minor nit, use CPU ID instead of FPU ID for BTLB parameters after passing
all kludges
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hppa/hppa/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/hppa/machdep.c b/sys/arch/hppa/hppa/machdep.c index 24765cf996e..751e2919af3 100644 --- a/sys/arch/hppa/hppa/machdep.c +++ b/sys/arch/hppa/hppa/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.150 2006/04/15 15:35:20 martin Exp $ */ +/* $OpenBSD: machdep.c,v 1.151 2006/05/28 23:08:07 martin Exp $ */ /* * Copyright (c) 1999-2003 Michael Shalayeff @@ -495,7 +495,7 @@ cpuid() } /* BTLB params */ - if (cpu_type < HPPA_FPU_PCXU && + if (cpu_type < HPPA_CPU_PCXU && (error = pdc_call((iodcio_t)pdc, 0, PDC_BLOCK_TLB, PDC_BTLB_DEFAULT, &pdc_btlb)) < 0) { #ifdef DEBUG |