On Tue, Jun 26, 2018 at 10:47:16PM +0300, Ville Syrjala wrote: > From: Ville Syrjälä <[email protected]> > > Use drm_{plane,connector}_mask() where appropriate. > > Cc: VMware Graphics <[email protected]> > Cc: Sinclair Yeh <[email protected]> > Cc: Thomas Hellstrom <[email protected]> > Signed-off-by: Ville Syrjälä <[email protected]>
Reviewed-by: Rodrigo Vivi <[email protected]> > --- > drivers/gpu/drm/vmwgfx/vmwgfx_kms.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c > b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c > index ef96ba7432ad..17e01423ead1 100644 > --- a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c > +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c > @@ -535,9 +535,9 @@ int vmw_du_crtc_atomic_check(struct drm_crtc *crtc, > struct drm_crtc_state *new_state) > { > struct vmw_display_unit *du = vmw_crtc_to_du(new_state->crtc); > - int connector_mask = 1 << drm_connector_index(&du->connector); > + int connector_mask = drm_connector_mask(&du->connector); > bool has_primary = new_state->plane_mask & > - BIT(drm_plane_index(crtc->primary)); > + drm_plane_mask(crtc->primary); > > /* We always want to have an active plane with an active CRTC */ > if (has_primary != new_state->enable) > -- > 2.16.4 > > _______________________________________________ > dri-devel mailing list > [email protected] > https://lists.freedesktop.org/mailman/listinfo/dri-devel _______________________________________________ dri-devel mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/dri-devel
