]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
memory: omap-gpmc: make dts snippet include semicolon
authorUwe Kleine-König <uwe@kleine-koenig.org>
Wed, 17 May 2017 18:38:10 +0000 (20:38 +0200)
committerTony Lindgren <tony@atomide.com>
Wed, 31 May 2017 17:07:08 +0000 (10:07 -0700)
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>
drivers/memory/omap-gpmc.c

index bf0fe0137dfed2c893001abb8cfe8b83861dae08..44b79db20021d845881d268d45019c72aadceff8 100644 (file)
@@ -460,12 +460,12 @@ static int get_gpmc_timing_reg(
                if (l)
                        time_ns_min = gpmc_clk_ticks_to_ns(l - 1, cs, cd) + 1;
                time_ns = gpmc_clk_ticks_to_ns(l, cs, cd);
-               pr_info("gpmc,%s = <%u> /* %u ns - %u ns; %i ticks%s*/\n",
+               pr_info("gpmc,%s = <%u>; /* %u ns - %u ns; %i ticks%s*/\n",
                        name, time_ns, time_ns_min, time_ns, l,
                        invalid ? "; invalid " : " ");
        } else {
                /* raw format */
-               pr_info("gpmc,%s = <%u>%s\n", name, l,
+               pr_info("gpmc,%s = <%u>;%s\n", name, l,
                        invalid ? " /* invalid */" : "");
        }