git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ff7390
)
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
notaz
<notasas@gmail.com>
Sat, 2 Jul 2016 21:26:06 +0000
(
00:26
+0300)
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
a38a1f8
..
a864eb9
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: