On Wed, 2017-07-12 at 10:13 +0200, Maarten Lankhorst wrote: > for_each_obj_in_state is about to be removed, so use the new atomic > iterator macros. > > Signed-off-by: Maarten Lankhorst <[email protected]> > Cc: CK Hu <[email protected]> > Cc: Philipp Zabel <[email protected]> > Cc: Matthias Brugger <[email protected]> > Cc: [email protected] > Cc: [email protected] > --- > drivers/gpu/drm/mediatek/mtk_drm_drv.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/mediatek/mtk_drm_drv.c > b/drivers/gpu/drm/mediatek/mtk_drm_drv.c > index 56f802d0a51c..be0741638f94 100644 > --- a/drivers/gpu/drm/mediatek/mtk_drm_drv.c > +++ b/drivers/gpu/drm/mediatek/mtk_drm_drv.c > @@ -48,11 +48,11 @@ static void mtk_atomic_schedule(struct mtk_drm_private > *private, > static void mtk_atomic_wait_for_fences(struct drm_atomic_state *state) > { > struct drm_plane *plane; > - struct drm_plane_state *plane_state; > + struct drm_plane_state *new_plane_state; > int i; > > - for_each_plane_in_state(state, plane, plane_state, i) > - mtk_fb_wait(plane->state->fb); > + for_each_new_plane_in_state(state, plane, new_plane_state, i) > + mtk_fb_wait(new_plane_state->fb); > } > > static void mtk_atomic_complete(struct mtk_drm_private *private,
Acked-by: Philipp Zabel <[email protected]> _______________________________________________ dri-devel mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/dri-devel
