summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2001-12-24 17:18:40 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2001-12-24 17:18:40 +0000
commit87c284d2e5972fd2a3970bee471722abcd8c2b52 (patch)
treebbb3177ca05a8c264c41a9e0df0a2d8911e1b493
parentaf22fd5cf68391ad7e611ca5c357672331d72d8d (diff)
More brdtyp vs cputyp replacements.
-rw-r--r--sys/arch/mvme88k/mvme88k/m8820x.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/mvme88k/m8820x.c b/sys/arch/mvme88k/mvme88k/m8820x.c
index 82cbe46e5f3..2f193788e77 100644
--- a/sys/arch/mvme88k/mvme88k/m8820x.c
+++ b/sys/arch/mvme88k/mvme88k/m8820x.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: m8820x.c,v 1.10 2001/12/24 04:12:40 miod Exp $ */
+/* $OpenBSD: m8820x.c,v 1.11 2001/12/24 17:18:39 miod Exp $ */
/*
* Copyright (c) 2001 Steve Murphree, Jr.
* Copyright (c) 1996 Nivas Madhur
@@ -378,18 +378,18 @@ m8820x_setup_board_config()
cpu_cmmu_ratio = max_cmmus / max_cpus;
switch (bd_config[vme188_config].supported) {
case 0:
- printf("MVME%x board configuration #%X: %d CPUs %d CMMUs\n", cputyp,
+ printf("MVME%x board configuration #%X: %d CPUs %d CMMUs\n", brdtyp,
vme188_config, max_cpus, max_cmmus);
panic("This configuration is not supported - go and get another OS.");
/* NOTREACHED */
break;
case 1:
- printf("MVME%x board configuration #%X: %d CPUs %d CMMUs\n", cputyp,
+ printf("MVME%x board configuration #%X: %d CPUs %d CMMUs\n", brdtyp,
vme188_config, max_cpus, max_cmmus);
m8820x_setup_cmmu_config();
break;
default:
- panic("UNKNOWN MVME%x board configuration: WHOAMI = 0x%02x", cputyp, *whoami);
+ panic("UNKNOWN MVME%x board configuration: WHOAMI = 0x%02x", brdtyp, *whoami);
/* NOTREACHED */
break;
}