summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/intel_hdmi.c
diff options
context:
space:
mode:
authorMaarten Lankhorst2017-07-12 10:13:34 +0200
committerMaarten Lankhorst2017-07-13 09:51:01 +0200
commitfe5f6b1fa02fbee34d95578db41f8e7117469b41 (patch)
treec4661e94c3c9e3fc55f9f76f6c1f7a4b985f98c1 /drivers/gpu/drm/i915/intel_hdmi.c
parentdrm/vmwgfx: Make check_modeset() use the new atomic iterator macros. (diff)
downloadkernel-qcow2-linux-fe5f6b1fa02fbee34d95578db41f8e7117469b41.tar.gz
kernel-qcow2-linux-fe5f6b1fa02fbee34d95578db41f8e7117469b41.tar.xz
kernel-qcow2-linux-fe5f6b1fa02fbee34d95578db41f8e7117469b41.zip
drm/i915: Use correct iterator macro
for_each_connector_in_state will be removed, so use the right state here. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: Daniel Vetter <daniel.vetter@intel.com> Cc: Jani Nikula <jani.nikula@linux.intel.com> Cc: intel-gfx@lists.freedesktop.org Link: http://patchwork.freedesktop.org/patch/msgid/20170712081344.25495-7-maarten.lankhorst@linux.intel.com Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_hdmi.c')
-rw-r--r--drivers/gpu/drm/i915/intel_hdmi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_hdmi.c b/drivers/gpu/drm/i915/intel_hdmi.c
index ec0779a52d53..916340f03882 100644
--- a/drivers/gpu/drm/i915/intel_hdmi.c
+++ b/drivers/gpu/drm/i915/intel_hdmi.c
@@ -1321,7 +1321,7 @@ static bool hdmi_12bpc_possible(struct intel_crtc_state *crtc_state)
if (crtc_state->output_types != 1 << INTEL_OUTPUT_HDMI)
return false;
- for_each_connector_in_state(state, connector, connector_state, i) {
+ for_each_new_connector_in_state(state, connector, connector_state, i) {
const struct drm_display_info *info = &connector->display_info;
if (connector_state->crtc != crtc_state->base.crtc)