Commit 2874bf3e authored by Mats Randgaard's avatar Mats Randgaard Committed by Mauro Carvalho Chehab

[media] tc358743: Print timings only when debug level is set

Prevent unnecessary kernel log spamming.
Signed-off-by: default avatarMats Randgaard <matrandg@cisco.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 9637b032
...@@ -859,15 +859,16 @@ static void tc358743_format_change(struct v4l2_subdev *sd) ...@@ -859,15 +859,16 @@ static void tc358743_format_change(struct v4l2_subdev *sd)
if (tc358743_get_detected_timings(sd, &timings)) { if (tc358743_get_detected_timings(sd, &timings)) {
enable_stream(sd, false); enable_stream(sd, false);
v4l2_dbg(1, debug, sd, "%s: Format changed. No signal\n", v4l2_dbg(1, debug, sd, "%s: No signal\n",
__func__); __func__);
} else { } else {
if (!v4l2_match_dv_timings(&state->timings, &timings, 0, false)) if (!v4l2_match_dv_timings(&state->timings, &timings, 0, false))
enable_stream(sd, false); enable_stream(sd, false);
v4l2_print_dv_timings(sd->name, if (debug)
"tc358743_format_change: Format changed. New format: ", v4l2_print_dv_timings(sd->name,
&timings, false); "tc358743_format_change: New format: ",
&timings, false);
} }
if (sd->devnode) if (sd->devnode)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment