aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Kleine-König <uwe@kleine-koenig.org>2017-05-17 14:38:10 -0400
committerTony Lindgren <tony@atomide.com>2017-05-31 13:07:08 -0400
commit95c278b24301fa56704830b2468d063394d0cb49 (patch)
treed568972019eee2da45ce8d3ec59133eefdc70106
parent2ea659a9ef488125eb46da6eb571de5eae5c43f6 (diff)
memory: omap-gpmc: make dts snippet include semicolon
In the device tree each property must be terminated with a semicolon, so include them in the output for easier cut-n-paste. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Acked-by: Roger Quadros <rogerq@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r--drivers/memory/omap-gpmc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/memory/omap-gpmc.c b/drivers/memory/omap-gpmc.c
index bf0fe0137dfe..44b79db20021 100644
--- a/drivers/memory/omap-gpmc.c
+++ b/drivers/memory/omap-gpmc.c
@@ -460,12 +460,12 @@ static int get_gpmc_timing_reg(
460 if (l) 460 if (l)
461 time_ns_min = gpmc_clk_ticks_to_ns(l - 1, cs, cd) + 1; 461 time_ns_min = gpmc_clk_ticks_to_ns(l - 1, cs, cd) + 1;
462 time_ns = gpmc_clk_ticks_to_ns(l, cs, cd); 462 time_ns = gpmc_clk_ticks_to_ns(l, cs, cd);
463 pr_info("gpmc,%s = <%u> /* %u ns - %u ns; %i ticks%s*/\n", 463 pr_info("gpmc,%s = <%u>; /* %u ns - %u ns; %i ticks%s*/\n",
464 name, time_ns, time_ns_min, time_ns, l, 464 name, time_ns, time_ns_min, time_ns, l,
465 invalid ? "; invalid " : " "); 465 invalid ? "; invalid " : " ");
466 } else { 466 } else {
467 /* raw format */ 467 /* raw format */
468 pr_info("gpmc,%s = <%u>%s\n", name, l, 468 pr_info("gpmc,%s = <%u>;%s\n", name, l,
469 invalid ? " /* invalid */" : ""); 469 invalid ? " /* invalid */" : "");
470 } 470 }
471 471