projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86fdb16
)
omap3: Display MHz instead of mHz on the console
author
man.huber@arcor.de
<man.huber@arcor.de>
Wed, 10 Apr 2013 12:12:17 +0000
(12:12 +0000)
committer
Tom Rini
<trini@ti.com>
Fri, 12 Apr 2013 19:29:23 +0000
(15:29 -0400)
The processor is hopefully running with M(ega)Hz and not with m(illi)Hz.
Signed-off-by: Manfred Huber <man.huber@arcor.de>
arch/arm/cpu/armv7/omap3/sys_info.c
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/armv7/omap3/sys_info.c
b/arch/arm/cpu/armv7/omap3/sys_info.c
index 3c801135027f82c5e170f14d8cc9310e20baff59..08a63d266eb6dcd358c9259fe1b501cb696ccc41 100644
(file)
--- a/
arch/arm/cpu/armv7/omap3/sys_info.c
+++ b/
arch/arm/cpu/armv7/omap3/sys_info.c
@@
-299,9
+299,9
@@
int print_cpuinfo (void)
}
if ((get_cpu_rev() >= CPU_3XX_ES31) &&
(get_sku_id() == SKUID_CLK_720MHZ))
- max_clk = "720
m
Hz";
+ max_clk = "720
M
Hz";
else
- max_clk = "600
m
Hz";
+ max_clk = "600
M
Hz";
break;
case CPU_AM35XX: