From: Eduardo Valentin <eduardo.valentin@xxxxxxxxx> Report OMAP2,3,4 data into system_soc_info. Now we get omap information under /proc/cpuinfo. Signed-off-by: Eduardo Valentin <eduardo.valentin@xxxxxxxxx> --- arch/arm/mach-omap2/id.c | 21 +++++++++++++++------ 1 files changed, 15 insertions(+), 6 deletions(-) diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index 37b8a1a..75e36a5 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c @@ -152,10 +152,15 @@ void __init omap24xx_check_revision(void) j = i; } - pr_info("OMAP%04x", omap_rev() >> 16); - if ((omap_rev() >> 8) & 0x0f) - pr_info("ES%x", (omap_rev() >> 12) & 0xf); - pr_info("\n"); + snprintf(system_soc_info, SYSTEM_SOC_INFO_SIZE, "OMAP%04x", + omap_rev() >> 16); + if ((omap_rev() >> 8) & 0x0f) { + int sz = strlen(system_soc_info); + + snprintf(system_soc_info + sz, SYSTEM_SOC_INFO_SIZE - sz, + "ES%x", (omap_rev() >> 12) & 0xf); + } + pr_info("%s\n", system_soc_info); } #define OMAP3_CHECK_FEATURE(status,feat) \ @@ -286,7 +291,9 @@ void __init omap4_check_revision(void) if ((hawkeye == 0xb852) && (rev == 0x0)) { omap_revision = OMAP4430_REV_ES1_0; omap_chip.oc |= CHIP_IS_OMAP4430ES1; - pr_info("OMAP%04x %s\n", omap_rev() >> 16, rev_name); + snprintf(system_soc_info, SYSTEM_SOC_INFO_SIZE, "OMAP%04x %s\n", + omap_rev() >> 16, rev_name); + pr_info("%s\n", system_soc_info); return; } @@ -356,7 +363,9 @@ void __init omap3_cpuinfo(void) } /* Print verbose information */ - pr_info("%s ES%s (", cpu_name, cpu_rev); + snprintf(system_soc_info, SYSTEM_SOC_INFO_SIZE, "%s ES%s", cpu_name, + cpu_rev); + pr_info("%s (", system_soc_info); OMAP3_SHOW_FEATURE(l2cache); OMAP3_SHOW_FEATURE(iva); -- 1.7.0.4.361.g8b5fe.dirty -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html