]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[media] exynos-gsc: Add missing newline char in debug messages
authorMarek Szyprowski <m.szyprowski@samsung.com>
Wed, 9 Nov 2016 14:24:00 +0000 (12:24 -0200)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Wed, 16 Nov 2016 18:35:43 +0000 (16:35 -0200)
Fix missing newline char in debug messages.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Tested-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/platform/exynos-gsc/gsc-core.c

index aa4db1dfc438f3e09ccf6117f5fa54914ce02afb..c7693c6296bfe386046f81b3f4a2c5d5609d3ecd 100644 (file)
@@ -1151,7 +1151,7 @@ static int gsc_runtime_resume(struct device *dev)
        struct gsc_dev *gsc = dev_get_drvdata(dev);
        int ret = 0;
 
-       pr_debug("gsc%d: state: 0x%lx", gsc->id, gsc->state);
+       pr_debug("gsc%d: state: 0x%lx\n", gsc->id, gsc->state);
 
        ret = clk_prepare_enable(gsc->clock);
        if (ret)
@@ -1173,7 +1173,7 @@ static int gsc_runtime_suspend(struct device *dev)
        if (!ret)
                clk_disable_unprepare(gsc->clock);
 
-       pr_debug("gsc%d: state: 0x%lx", gsc->id, gsc->state);
+       pr_debug("gsc%d: state: 0x%lx\n", gsc->id, gsc->state);
        return ret;
 }
 #endif