Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b655741f authored by Niklas Söderlund's avatar Niklas Söderlund Committed by Mauro Carvalho Chehab
Browse files

[media] rcar-vin: use rvin_reset_format() in S_DV_TIMINGS



Use rvin_reset_format() in rvin_s_dv_timings() instead of just resetting
a few fields. This fixes an issue where the field format was not
properly set after S_DV_TIMINGS.

Signed-off-by: default avatarNiklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 6afaaab0
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -573,12 +573,8 @@ static int rvin_s_dv_timings(struct file *file, void *priv_fh,
	if (ret)
		return ret;

	vin->source.width = timings->bt.width;
	vin->source.height = timings->bt.height;
	vin->format.width = timings->bt.width;
	vin->format.height = timings->bt.height;

	return 0;
	/* Changing the timings will change the width/height */
	return rvin_reset_format(vin);
}

static int rvin_g_dv_timings(struct file *file, void *priv_fh,