> -----Original Message----- > From: Ville Syrjala <[email protected]> > Sent: Friday, February 21, 2020 9:13 PM > To: [email protected] > Cc: Navare, Manasi D <[email protected]>; Shankar, Uma > <[email protected]>; Ville Syrjälä <[email protected]> > Subject: [PATCH] drm/i915: Correctly terminate connector iteration > > From: Ville Syrjälä <[email protected]> > > One should use drm_connector_list_iter_end() rather than > drm_connector_list_iter_begin() to terminate the connector iteration.
Thanks Ville for fixing this. Reviewed-by: Uma Shankar <[email protected]> > Cc: Manasi Navare <[email protected]> > Cc: Uma Shankar <[email protected]> > Closes: https://gitlab.freedesktop.org/drm/intel/issues/1278 > Fixes: e24bcd34c1dd ("drm/i915/dp: Add all tiled and port sync conns to > modeset") > Signed-off-by: Ville Syrjälä <[email protected]> > --- > drivers/gpu/drm/i915/display/intel_dp.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c > b/drivers/gpu/drm/i915/display/intel_dp.c > index 0660b8c333ac..7e8280fc62ba 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp.c > +++ b/drivers/gpu/drm/i915/display/intel_dp.c > @@ -6622,7 +6622,7 @@ static int intel_modeset_tile_group(struct > intel_atomic_state *state, > if (ret) > break; > } > - drm_connector_list_iter_begin(&dev_priv->drm, &conn_iter); > + drm_connector_list_iter_end(&conn_iter); > > return ret; > } > -- > 2.24.1 _______________________________________________ Intel-gfx mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/intel-gfx
