From: Colin Ian King Date: Wed, 23 Mar 2016 13:03:03 +0000 (-0300) Subject: [media] media: i2c: ths7303: remove redundant assignment on bt X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=00303f9134c2db5d17bacda541c07d46517485d9;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [media] media: i2c: ths7303: remove redundant assignment on bt The extraneous assignment on bt is redundant and can be removed. Signed-off-by: Colin Ian King Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/i2c/ths7303.c b/drivers/media/i2c/ths7303.c index 5bbfcab01c75..71a31352135c 100644 --- a/drivers/media/i2c/ths7303.c +++ b/drivers/media/i2c/ths7303.c @@ -285,7 +285,7 @@ static int ths7303_log_status(struct v4l2_subdev *sd) v4l2_info(sd, "stream %s\n", state->stream_on ? "On" : "Off"); if (state->bt.pixelclock) { - struct v4l2_bt_timings *bt = bt = &state->bt; + struct v4l2_bt_timings *bt = &state->bt; u32 frame_width, frame_height; frame_width = V4L2_DV_BT_FRAME_WIDTH(bt);