20. 2. 12. 오전 1:22에 Ville Syrjala 이(가) 쓴 글:
> From: Ville Syrjälä <[email protected]>
> 
> Replace the hand rolled encoder bitmask thing with drm_encoder_mask()
> 
> Cc: Inki Dae <[email protected]>
> Cc: Joonyoung Shim <[email protected]>
> Cc: Seung-Woo Kim <[email protected]>
> Cc: Kyungmin Park <[email protected]>
> Acked-by: Thomas Zimmermann <[email protected]>
> Signed-off-by: Ville Syrjälä <[email protected]>

Acked-by: Inki Dae <[email protected]>

THanks,
Inki Dae

> ---
>  drivers/gpu/drm/exynos/exynos_drm_drv.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c 
> b/drivers/gpu/drm/exynos/exynos_drm_drv.c
> index ba0f868b2477..57defeb44522 100644
> --- a/drivers/gpu/drm/exynos/exynos_drm_drv.c
> +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c
> @@ -270,7 +270,7 @@ static int exynos_drm_bind(struct device *dev)
>       struct drm_encoder *encoder;
>       struct drm_device *drm;
>       unsigned int clone_mask;
> -     int cnt, ret;
> +     int ret;
>  
>       drm = drm_dev_alloc(&exynos_drm_driver, dev);
>       if (IS_ERR(drm))
> @@ -293,10 +293,9 @@ static int exynos_drm_bind(struct device *dev)
>       exynos_drm_mode_config_init(drm);
>  
>       /* setup possible_clones. */
> -     cnt = 0;
>       clone_mask = 0;
>       list_for_each_entry(encoder, &drm->mode_config.encoder_list, head)
> -             clone_mask |= (1 << (cnt++));
> +             clone_mask |= drm_encoder_mask(encoder);
>  
>       list_for_each_entry(encoder, &drm->mode_config.encoder_list, head)
>               encoder->possible_clones = clone_mask;
> 
_______________________________________________
dri-devel mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to