From e0f013990e5bb68aec8d70dd5b35a6b81da836f7 Mon Sep 17 00:00:00 2001 From: Marek Szyprowski Date: Wed, 9 Nov 2016 12:24:00 -0200 Subject: [PATCH] [media] exynos-gsc: Add missing newline char in debug messages Fix missing newline char in debug messages. Signed-off-by: Marek Szyprowski Tested-by: Javier Martinez Canillas Signed-off-by: Sylwester Nawrocki Signed-off-by: Mauro Carvalho Chehab --- drivers/media/platform/exynos-gsc/gsc-core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/platform/exynos-gsc/gsc-core.c b/drivers/media/platform/exynos-gsc/gsc-core.c index aa4db1dfc438..c7693c6296bf 100644 --- a/drivers/media/platform/exynos-gsc/gsc-core.c +++ b/drivers/media/platform/exynos-gsc/gsc-core.c @@ -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 -- 2.39.5