aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <[email protected]>2020-07-06 20:36:02 +0200
committerMauro Carvalho Chehab <[email protected]>2020-07-19 09:25:04 +0200
commited595da7d70fbb12bb5bd30936b472164082c484 (patch)
tree10c297772d6461203a0ac7f8a7a56ec0bd6fddee
parent281736ef5545bb07b3291d00f655d6f884df9f80 (diff)
media: ti-vpe: cal: Use ctx_info() instead of v4l2_info()
Use the context-specific print macro to replace the last usage of the v4l2_* print macros. Signed-off-by: Laurent Pinchart <[email protected]> Reviewed-by: Tomi Valkeinen <[email protected]> Reviewed-by: Benoit Parrot <[email protected]> Signed-off-by: Hans Verkuil <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r--drivers/media/platform/ti-vpe/cal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/platform/ti-vpe/cal.c b/drivers/media/platform/ti-vpe/cal.c
index 22679baec364..b55c8fb369a0 100644
--- a/drivers/media/platform/ti-vpe/cal.c
+++ b/drivers/media/platform/ti-vpe/cal.c
@@ -1893,8 +1893,8 @@ static int cal_complete_ctx(struct cal_ctx *ctx)
if (ret < 0)
return ret;
- v4l2_info(&ctx->v4l2_dev, "V4L2 device registered as %s\n",
- video_device_node_name(vfd));
+ ctx_info(ctx, "V4L2 device registered as %s\n",
+ video_device_node_name(vfd));
return 0;
}