diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-18 21:36:07 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-18 21:36:07 +0000 |
commit | 36a1298f5bf20a09cb892234b987be86a778120b (patch) | |
tree | 86e84c3974ab23ee64f2e5523c9f1d11f7435bf6 /sys/arch | |
parent | a9443bbe9fb4c04a3e9c61f32707e49ddc28b18d (diff) |
Close PR 1864, Mhz should be written as MHz.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/powerpc/powerpc/cpu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/powerpc/powerpc/cpu.c b/sys/arch/powerpc/powerpc/cpu.c index 8d72d1b5414..3b1a9ab31bd 100644 --- a/sys/arch/powerpc/powerpc/cpu.c +++ b/sys/arch/powerpc/powerpc/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.10 2001/05/21 19:52:55 drahn Exp $ */ +/* $OpenBSD: cpu.c,v 1.11 2001/06/18 21:36:06 drahn Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -159,9 +159,9 @@ 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); + printf(": %d MHz", clock_freq); } /* power savings mode */ |