mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 04:56:13 +02:00
media: i2c: adv748x: Switch dv timing callbacks to pad ops
Change all (s|g|query)_dv_timings subdev callbacks to include a pad argument. Signed-off-by: Paweł Anikiel <panikiel@google.com> Tested-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
parent
009e125613
commit
a8ece88ab0
|
|
@ -214,7 +214,7 @@ static int adv748x_hdmi_set_video_timings(struct adv748x_state *state,
|
|||
* v4l2_subdev_video_ops
|
||||
*/
|
||||
|
||||
static int adv748x_hdmi_s_dv_timings(struct v4l2_subdev *sd,
|
||||
static int adv748x_hdmi_s_dv_timings(struct v4l2_subdev *sd, unsigned int pad,
|
||||
struct v4l2_dv_timings *timings)
|
||||
{
|
||||
struct adv748x_hdmi *hdmi = adv748x_sd_to_hdmi(sd);
|
||||
|
|
@ -254,7 +254,7 @@ static int adv748x_hdmi_s_dv_timings(struct v4l2_subdev *sd,
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int adv748x_hdmi_g_dv_timings(struct v4l2_subdev *sd,
|
||||
static int adv748x_hdmi_g_dv_timings(struct v4l2_subdev *sd, unsigned int pad,
|
||||
struct v4l2_dv_timings *timings)
|
||||
{
|
||||
struct adv748x_hdmi *hdmi = adv748x_sd_to_hdmi(sd);
|
||||
|
|
@ -269,7 +269,7 @@ static int adv748x_hdmi_g_dv_timings(struct v4l2_subdev *sd,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int adv748x_hdmi_query_dv_timings(struct v4l2_subdev *sd,
|
||||
static int adv748x_hdmi_query_dv_timings(struct v4l2_subdev *sd, unsigned int pad,
|
||||
struct v4l2_dv_timings *timings)
|
||||
{
|
||||
struct adv748x_hdmi *hdmi = adv748x_sd_to_hdmi(sd);
|
||||
|
|
@ -392,9 +392,6 @@ static int adv748x_hdmi_g_pixelaspect(struct v4l2_subdev *sd,
|
|||
}
|
||||
|
||||
static const struct v4l2_subdev_video_ops adv748x_video_ops_hdmi = {
|
||||
.s_dv_timings = adv748x_hdmi_s_dv_timings,
|
||||
.g_dv_timings = adv748x_hdmi_g_dv_timings,
|
||||
.query_dv_timings = adv748x_hdmi_query_dv_timings,
|
||||
.g_input_status = adv748x_hdmi_g_input_status,
|
||||
.s_stream = adv748x_hdmi_s_stream,
|
||||
.g_pixelaspect = adv748x_hdmi_g_pixelaspect,
|
||||
|
|
@ -413,7 +410,7 @@ static int adv748x_hdmi_propagate_pixelrate(struct adv748x_hdmi *hdmi)
|
|||
if (!tx)
|
||||
return -ENOLINK;
|
||||
|
||||
adv748x_hdmi_query_dv_timings(&hdmi->sd, &timings);
|
||||
adv748x_hdmi_query_dv_timings(&hdmi->sd, 0, &timings);
|
||||
|
||||
return adv748x_csi2_set_pixelrate(tx, timings.bt.pixelclock);
|
||||
}
|
||||
|
|
@ -610,6 +607,9 @@ static const struct v4l2_subdev_pad_ops adv748x_pad_ops_hdmi = {
|
|||
.get_fmt = adv748x_hdmi_get_format,
|
||||
.get_edid = adv748x_hdmi_get_edid,
|
||||
.set_edid = adv748x_hdmi_set_edid,
|
||||
.s_dv_timings = adv748x_hdmi_s_dv_timings,
|
||||
.g_dv_timings = adv748x_hdmi_g_dv_timings,
|
||||
.query_dv_timings = adv748x_hdmi_query_dv_timings,
|
||||
.dv_timings_cap = adv748x_hdmi_dv_timings_cap,
|
||||
.enum_dv_timings = adv748x_hdmi_enum_dv_timings,
|
||||
};
|
||||
|
|
@ -734,7 +734,7 @@ int adv748x_hdmi_init(struct adv748x_hdmi *hdmi)
|
|||
struct v4l2_dv_timings cea1280x720 = V4L2_DV_BT_CEA_1280X720P30;
|
||||
int ret;
|
||||
|
||||
adv748x_hdmi_s_dv_timings(&hdmi->sd, &cea1280x720);
|
||||
adv748x_hdmi_s_dv_timings(&hdmi->sd, 0, &cea1280x720);
|
||||
|
||||
/* Initialise a default 16:9 aspect ratio */
|
||||
hdmi->aspect_ratio.numerator = 16;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user