Skip to content
Snippets Groups Projects
Commit 9d0fd10c authored by man.huber@arcor.de's avatar man.huber@arcor.de Committed by Tom Rini
Browse files

omap3: Display MHz instead of mHz on the console


The processor is hopefully running with M(ega)Hz and not with m(illi)Hz.

Signed-off-by: default avatarManfred Huber <man.huber@arcor.de>
parent 86fdb161
No related branches found
No related tags found
No related merge requests found
...@@ -299,9 +299,9 @@ int print_cpuinfo (void) ...@@ -299,9 +299,9 @@ int print_cpuinfo (void)
} }
if ((get_cpu_rev() >= CPU_3XX_ES31) && if ((get_cpu_rev() >= CPU_3XX_ES31) &&
(get_sku_id() == SKUID_CLK_720MHZ)) (get_sku_id() == SKUID_CLK_720MHZ))
max_clk = "720 mHz"; max_clk = "720 MHz";
else else
max_clk = "600 mHz"; max_clk = "600 MHz";
break; break;
case CPU_AM35XX: case CPU_AM35XX:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment