Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/ia64/ia64 Typo fix: Mhz -> MHz



details:   https://anonhg.NetBSD.org/src/rev/827aa8675af1
branches:  trunk
changeset: 746928:827aa8675af1
user:      ahoka <ahoka%NetBSD.org@localhost>
date:      Sun Aug 23 16:15:45 2009 +0000

description:
Typo fix: Mhz -> MHz

No functional change intended.

diffstat:

 sys/arch/ia64/ia64/machdep.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 76667b7a5252 -r 827aa8675af1 sys/arch/ia64/ia64/machdep.c
--- a/sys/arch/ia64/ia64/machdep.c      Sun Aug 23 16:11:48 2009 +0000
+++ b/sys/arch/ia64/ia64/machdep.c      Sun Aug 23 16:15:45 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.16 2009/07/20 05:10:49 kiyohara Exp $    */
+/*     $NetBSD: machdep.c,v 1.17 2009/08/23 16:15:45 ahoka Exp $       */
 
 /*-
  * Copyright (c) 2003,2004 Marcel Moolenaar
@@ -227,7 +227,7 @@
 
        printf("CPU: %s (", model_name);
        if (processor_frequency) {
-               printf("%ld.%02ld-Mhz ", (processor_frequency + 4999) / Mhz,
+               printf("%ld.%02ld-MHz ", (processor_frequency + 4999) / Mhz,
                    ((processor_frequency + 4999) / (Mhz/100)) % 100);
        }
        printf("%s)\n", family_name);



Home | Main Index | Thread Index | Old Index