Use v4l2_info() to make it possible to identify which FIMC-LITE
device instance the logs refer to.

Signed-off-by: Sylwester Nawrocki <[email protected]>
Signed-off-by: Kyungmin Park <[email protected]>
---
 drivers/media/platform/s5p-fimc/fimc-lite-reg.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/media/platform/s5p-fimc/fimc-lite-reg.c 
b/drivers/media/platform/s5p-fimc/fimc-lite-reg.c
index a22d7eb..ad63ebf 100644
--- a/drivers/media/platform/s5p-fimc/fimc-lite-reg.c
+++ b/drivers/media/platform/s5p-fimc/fimc-lite-reg.c
@@ -292,9 +292,11 @@ void flite_hw_dump_regs(struct fimc_lite *dev, const char 
*label)
        };
        u32 i;
 
-       pr_info("--- %s ---\n", label);
+       v4l2_info(&dev->subdev, "--- %s ---\n", label);
+
        for (i = 0; i < ARRAY_SIZE(registers); i++) {
                u32 cfg = readl(dev->regs + registers[i].offset);
-               pr_info("%s: %s:\t0x%08x\n", __func__, registers[i].name, cfg);
+               v4l2_info(&dev->subdev, "%9s: 0x%08x\n",
+                         registers[i].name, cfg);
        }
 }
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to