Commit 00303f91 authored by Colin Ian King's avatar Colin Ian King Committed by Mauro Carvalho Chehab

[media] media: i2c: ths7303: remove redundant assignment on bt

The extraneous assignment on bt is redundant and can be removed.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent e8e20f1f
...@@ -285,7 +285,7 @@ static int ths7303_log_status(struct v4l2_subdev *sd) ...@@ -285,7 +285,7 @@ static int ths7303_log_status(struct v4l2_subdev *sd)
v4l2_info(sd, "stream %s\n", state->stream_on ? "On" : "Off"); v4l2_info(sd, "stream %s\n", state->stream_on ? "On" : "Off");
if (state->bt.pixelclock) { if (state->bt.pixelclock) {
struct v4l2_bt_timings *bt = bt = &state->bt; struct v4l2_bt_timings *bt = &state->bt;
u32 frame_width, frame_height; u32 frame_width, frame_height;
frame_width = V4L2_DV_BT_FRAME_WIDTH(bt); frame_width = V4L2_DV_BT_FRAME_WIDTH(bt);
......
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