summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2001-03-04 05:10:58 +0000
committerBrad Smith <brad@cvs.openbsd.org>2001-03-04 05:10:58 +0000
commit83b2c72287c2b0b4cace884499a063419107d48f (patch)
treef726cdbcd680b0250829c6b7efdc352247176965 /sys
parente5b11c215f5ca00cbace95d3f43405191a091378 (diff)
fix typo in comment, org -> or
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/powerpc/powerpc/cpu.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/arch/powerpc/powerpc/cpu.c b/sys/arch/powerpc/powerpc/cpu.c
index 5977a40c33c..f282e366bda 100644
--- a/sys/arch/powerpc/powerpc/cpu.c
+++ b/sys/arch/powerpc/powerpc/cpu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.c,v 1.6 2000/11/05 22:16:03 drahn Exp $ */
+/* $OpenBSD: cpu.c,v 1.7 2001/03/04 05:10:57 brad Exp $ */
/*
* Copyright (c) 1997 Per Fogelstrom
@@ -44,7 +44,6 @@
char cpu_model[80];
char machine[] = "powerpc"; /* cpu architecture */
-
/* Definition of the driver for autoconfig. */
static int cpumatch(struct device *, void *, void *);
static void cpuattach(struct device *, struct device *, void *);
@@ -143,12 +142,12 @@ cpuattach(parent, dev, aux)
}
if (clock_freq != 0) {
- /* Openfirmware stores clock in HZ, not Mhz */
+ /* Openfirmware stores clock in HZ, not Mhz */
clock_freq /= 1000000;
printf(": %d Mhz", clock_freq);
}
- /* if processor is G3 org G4, configure l2 cache */
+ /* if processor is G3 or G4, configure l2 cache */
if ( (cpu == 8) || (cpu == 12) ) {
config_l2cr();
}
@@ -265,4 +264,3 @@ config_l2cr()
printf(": L2 cache not enabled");
}
-