diff options
author | Neil Armstrong <narmstrong@baylibre.com> | 2021-10-14 17:26:03 +0200 |
---|---|---|
committer | Neil Armstrong <narmstrong@baylibre.com> | 2021-10-15 09:59:14 +0200 |
commit | f6632721cd6231e1bf28b5317dcc7543e43359f7 (patch) | |
tree | ede5386d0b31ed1725774b2a8a9c72e4ce602167 /drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | |
parent | 566b651cc53154d6fe88ebd61c86b996d6621d09 (diff) | |
download | lwn-f6632721cd6231e1bf28b5317dcc7543e43359f7.tar.gz lwn-f6632721cd6231e1bf28b5317dcc7543e43359f7.zip |
drm/bridge: synopsys: dw-hdmi: also allow interlace on bridge
Since we allow interlace on the encoder, also allow it on the bridge
so we can allow interlaced modes when using DRM_BRIDGE_ATTACH_NO_CONNECTOR.
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20211014152606.2289528-5-narmstrong@baylibre.com
Diffstat (limited to 'drivers/gpu/drm/bridge/synopsys/dw-hdmi.c')
-rw-r--r-- | drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c index f08d0fded61f..62ae63565d3a 100644 --- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c +++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c @@ -3413,6 +3413,7 @@ struct dw_hdmi *dw_hdmi_probe(struct platform_device *pdev, hdmi->bridge.funcs = &dw_hdmi_bridge_funcs; hdmi->bridge.ops = DRM_BRIDGE_OP_DETECT | DRM_BRIDGE_OP_EDID | DRM_BRIDGE_OP_HPD; + hdmi->bridge.interlace_allowed = true; #ifdef CONFIG_OF hdmi->bridge.of_node = pdev->dev.of_node; #endif |