aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-omap2/id.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c
index 6c11b41b4d44..49846601fe77 100644
--- a/arch/arm/mach-omap2/id.c
+++ b/arch/arm/mach-omap2/id.c
@@ -257,11 +257,8 @@ void __init omap3_check_revision(void)
257} 257}
258 258
259#define OMAP3_SHOW_FEATURE(feat) \ 259#define OMAP3_SHOW_FEATURE(feat) \
260 if (omap3_has_ ##feat()) { \ 260 if (omap3_has_ ##feat()) \
261 pr_info (" - "#feat" : Y"); \ 261 printk(#feat" ");
262 } else { \
263 pr_info (" - "#feat" : N"); \
264 }
265 262
266void __init omap3_cpuinfo(void) 263void __init omap3_cpuinfo(void)
267{ 264{
@@ -331,13 +328,15 @@ void __init omap3_cpuinfo(void)
331 /* 328 /*
332 * Print verbose information 329 * Print verbose information
333 */ 330 */
334 pr_info("%s ES%s\n", cpu_name, cpu_rev); 331 pr_info("%s ES%s (", cpu_name, cpu_rev);
335 332
336 OMAP3_SHOW_FEATURE(l2cache); 333 OMAP3_SHOW_FEATURE(l2cache);
337 OMAP3_SHOW_FEATURE(iva); 334 OMAP3_SHOW_FEATURE(iva);
338 OMAP3_SHOW_FEATURE(sgx); 335 OMAP3_SHOW_FEATURE(sgx);
339 OMAP3_SHOW_FEATURE(neon); 336 OMAP3_SHOW_FEATURE(neon);
340 OMAP3_SHOW_FEATURE(isp); 337 OMAP3_SHOW_FEATURE(isp);
338
339 printk(")\n");
341} 340}
342 341
343/* 342/*