diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2014-01-31 06:51:18 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-05-25 11:45:20 -0400 |
commit | 9e824409342183e3388a0880b85a079121d2f497 (patch) | |
tree | 1b13884b1cbbff4232f52a368fc4033c2a49aa01 /drivers/media/platform/s5p-tv | |
parent | 0dd3e36c8c4233cd5ff1849e153b858b3c16f4da (diff) |
[media] s5p-tv: hdmi: Remove deprecated video-level DV timings operations
The video enum_dv_timings and dv_timings_cap operations are deprecated
and unused. Remove them.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/platform/s5p-tv')
-rw-r--r-- | drivers/media/platform/s5p-tv/hdmi_drv.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/media/platform/s5p-tv/hdmi_drv.c b/drivers/media/platform/s5p-tv/hdmi_drv.c index 3db496cf65fb..754740f4b671 100644 --- a/drivers/media/platform/s5p-tv/hdmi_drv.c +++ b/drivers/media/platform/s5p-tv/hdmi_drv.c | |||
@@ -693,7 +693,7 @@ static int hdmi_dv_timings_cap(struct v4l2_subdev *sd, | |||
693 | return -EINVAL; | 693 | return -EINVAL; |
694 | 694 | ||
695 | /* Let the phy fill in the pixelclock range */ | 695 | /* Let the phy fill in the pixelclock range */ |
696 | v4l2_subdev_call(hdev->phy_sd, video, dv_timings_cap, cap); | 696 | v4l2_subdev_call(hdev->phy_sd, pad, dv_timings_cap, cap); |
697 | cap->type = V4L2_DV_BT_656_1120; | 697 | cap->type = V4L2_DV_BT_656_1120; |
698 | cap->bt.min_width = 720; | 698 | cap->bt.min_width = 720; |
699 | cap->bt.max_width = 1920; | 699 | cap->bt.max_width = 1920; |
@@ -712,8 +712,6 @@ static const struct v4l2_subdev_core_ops hdmi_sd_core_ops = { | |||
712 | static const struct v4l2_subdev_video_ops hdmi_sd_video_ops = { | 712 | static const struct v4l2_subdev_video_ops hdmi_sd_video_ops = { |
713 | .s_dv_timings = hdmi_s_dv_timings, | 713 | .s_dv_timings = hdmi_s_dv_timings, |
714 | .g_dv_timings = hdmi_g_dv_timings, | 714 | .g_dv_timings = hdmi_g_dv_timings, |
715 | .enum_dv_timings = hdmi_enum_dv_timings, | ||
716 | .dv_timings_cap = hdmi_dv_timings_cap, | ||
717 | .g_mbus_fmt = hdmi_g_mbus_fmt, | 715 | .g_mbus_fmt = hdmi_g_mbus_fmt, |
718 | .s_stream = hdmi_s_stream, | 716 | .s_stream = hdmi_s_stream, |
719 | }; | 717 | }; |