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

Commit 7bf432d6 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (10626): ivtv: fix regression in get sliced vbi format



The new v4l2_subdev_call used s_fmt instead of g_fmt.

Thanks-to: Andy Walls <awalls@radix.net>
Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent ac9575f7
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -393,7 +393,7 @@ static int ivtv_g_fmt_sliced_vbi_cap(struct file *file, void *fh, struct v4l2_fo
		return 0;
		return 0;
	}
	}


	v4l2_subdev_call(itv->sd_video, video, s_fmt, fmt);
	v4l2_subdev_call(itv->sd_video, video, g_fmt, fmt);
	vbifmt->service_set = ivtv_get_service_set(vbifmt);
	vbifmt->service_set = ivtv_get_service_set(vbifmt);
	return 0;
	return 0;
}
}