[U-Boot] [PATCH 1/2] arm: omap3: Fix cpuinfo frequency spelling

Ladislav Michl ladis at linux-mips.org
Fri Jan 20 14:03:15 CET 2017


Frequency is measured in Hz.

Signed-off-by: Ladislav Michl <ladis at linux-mips.org>
---
 arch/arm/mach-omap2/omap3/sys_info.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/mach-omap2/omap3/sys_info.c b/arch/arm/mach-omap2/omap3/sys_info.c
index 6818fab253..1f8b5ad77c 100644
--- a/arch/arm/mach-omap2/omap3/sys_info.c
+++ b/arch/arm/mach-omap2/omap3/sys_info.c
@@ -292,7 +292,7 @@ int print_cpuinfo (void)
 			cpu_s = "35XX";
 			break;
 		}
-		max_clk = "600 Mhz";
+		max_clk = "600 MHz";
 		break;
 	case CPU_OMAP36XX:
 		cpu_family_s = "OMAP";
@@ -304,12 +304,12 @@ int print_cpuinfo (void)
 			cpu_s = "36XX/37XX";
 			break;
 		}
-		max_clk = "1 Ghz";
+		max_clk = "1 GHz";
 		break;
 	default:
 		cpu_family_s = "OMAP";
 		cpu_s = "35XX";
-		max_clk = "600 Mhz";
+		max_clk = "600 MHz";
 	}
 
 	switch (get_device_type()) {
-- 
2.11.0



More information about the U-Boot mailing list