diff options
author | Andreas Bießmann <andreas.devel@googlemail.com> | 2013-07-08 15:21:34 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-07-26 16:39:10 -0400 |
commit | c4ec281822562de4ac5850d3b623412be8b721a7 (patch) | |
tree | 182551f3cfdbd01875be62e50a29fc809fe47ca2 /arch/arm | |
parent | e4c444b34b6ff6b347e552805ee89c48f85785bb (diff) | |
download | u-boot-imx-c4ec281822562de4ac5850d3b623412be8b721a7.zip u-boot-imx-c4ec281822562de4ac5850d3b623412be8b721a7.tar.gz u-boot-imx-c4ec281822562de4ac5850d3b623412be8b721a7.tar.bz2 |
omap3/sys_info: fix printout of OMAP36XX L3 freqency
The OMAP36xx/OMAP37xx family uses L3 frequency of 200MHz instead of 165MHz
used by OMAP34xx/OMAP35xx.
Also fix checkpatch warning about alignment.
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/cpu/armv7/omap3/sys_info.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/cpu/armv7/omap3/sys_info.c b/arch/arm/cpu/armv7/omap3/sys_info.c index 9a3303f..258786b 100644 --- a/arch/arm/cpu/armv7/omap3/sys_info.c +++ b/arch/arm/cpu/armv7/omap3/sys_info.c @@ -342,9 +342,9 @@ int print_cpuinfo (void) } if (CPU_OMAP36XX == get_cpu_family()) - printf("%s%s-%s ES%s, CPU-OPP2, L3-165MHz, Max CPU Clock %s\n", - cpu_family_s, cpu_s, sec_s, - rev_s_37xx[get_cpu_rev()], max_clk); + printf("%s%s-%s ES%s, CPU-OPP2, L3-200MHz, Max CPU Clock %s\n", + cpu_family_s, cpu_s, sec_s, + rev_s_37xx[get_cpu_rev()], max_clk); else printf("%s%s-%s ES%s, CPU-OPP2, L3-165MHz, Max CPU Clock %s\n", cpu_family_s, cpu_s, sec_s, |