aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i2c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2019-01-16 17:48:42 -0500
committerDave Airlie <airlied@redhat.com>2019-01-17 02:29:29 -0500
commitb122153c7198e35fcb981ca9efd63b0df8ef3eab (patch)
tree80319b40bdafb8e2dfbdb1406a924ebbd07c2ce0 /drivers/gpu/drm/i2c
parente3d093070eb0b5e3df668d3eb04100ea79343c65 (diff)
parent9a47db8e7a9dabe0b88a0071f1677722be167e68 (diff)
Merge tag 'du-next-20190114' of git://linuxtv.org/pinchartl/media into drm-next
Renesas display drivers changes for v5.1: - R8A774C0 support - D3/E3 RGB output routing fixes - Miscellaneous fixes - Constify drm_bridge .mode_set() arguments Signed-off-by: Dave Airlie <airlied@redhat.com> From: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Link: https://patchwork.freedesktop.org/patch/msgid/1743477.dgErSCK0Q8@avalon
Diffstat (limited to 'drivers/gpu/drm/i2c')
-rw-r--r--drivers/gpu/drm/i2c/tda998x_drv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/i2c/tda998x_drv.c b/drivers/gpu/drm/i2c/tda998x_drv.c
index a7c39f39793f..a6ba461749b2 100644
--- a/drivers/gpu/drm/i2c/tda998x_drv.c
+++ b/drivers/gpu/drm/i2c/tda998x_drv.c
@@ -845,7 +845,7 @@ static int tda998x_write_aif(struct tda998x_priv *priv,
845} 845}
846 846
847static void 847static void
848tda998x_write_avi(struct tda998x_priv *priv, struct drm_display_mode *mode) 848tda998x_write_avi(struct tda998x_priv *priv, const struct drm_display_mode *mode)
849{ 849{
850 union hdmi_infoframe frame; 850 union hdmi_infoframe frame;
851 851
@@ -1339,8 +1339,8 @@ static void tda998x_bridge_disable(struct drm_bridge *bridge)
1339} 1339}
1340 1340
1341static void tda998x_bridge_mode_set(struct drm_bridge *bridge, 1341static void tda998x_bridge_mode_set(struct drm_bridge *bridge,
1342 struct drm_display_mode *mode, 1342 const struct drm_display_mode *mode,
1343 struct drm_display_mode *adjusted_mode) 1343 const struct drm_display_mode *adjusted_mode)
1344{ 1344{
1345 struct tda998x_priv *priv = bridge_to_tda998x_priv(bridge); 1345 struct tda998x_priv *priv = bridge_to_tda998x_priv(bridge);
1346 unsigned long tmds_clock; 1346 unsigned long tmds_clock;