drm/msm: Replace drm_fb_get_bpp_depth() with drm_format_plane_cpp()
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Wed, 8 Jun 2016 23:32:10 +0000 (02:32 +0300)
committerRob Clark <robdclark@gmail.com>
Sat, 16 Jul 2016 14:29:29 +0000 (10:29 -0400)
The driver needs the number of bytes per pixel, not the bpp and depth
info meant for fbdev compatibility. Use the right API.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Rob Clark <robdclark@gmail.com>
drivers/gpu/drm/msm/mdp/mdp5/mdp5_crtc.c

index 4e8ed739f55877cbe8e96ce6f806bdc138efc721..fa2be7ce9468768eb6737a12ec29d11fc52f49f0 100644 (file)
@@ -490,8 +490,7 @@ static int mdp5_crtc_cursor_set(struct drm_crtc *crtc,
        struct mdp5_kms *mdp5_kms = get_kms(crtc);
        struct drm_gem_object *cursor_bo, *old_bo = NULL;
        uint32_t blendcfg, cursor_addr, stride;
-       int ret, bpp, lm;
-       unsigned int depth;
+       int ret, lm;
        enum mdp5_cursor_alpha cur_alpha = CURSOR_ALPHA_PER_PIXEL;
        uint32_t flush_mask = mdp_ctl_flush_mask_cursor(0);
        uint32_t roi_w, roi_h;
@@ -521,8 +520,7 @@ static int mdp5_crtc_cursor_set(struct drm_crtc *crtc,
                return -EINVAL;
 
        lm = mdp5_crtc->lm;
-       drm_fb_get_bpp_depth(DRM_FORMAT_ARGB8888, &depth, &bpp);
-       stride = width * (bpp >> 3);
+       stride = width * drm_format_plane_cpp(DRM_FORMAT_ARGB8888, 0);
 
        spin_lock_irqsave(&mdp5_crtc->cursor.lock, flags);
        old_bo = mdp5_crtc->cursor.scanout_bo;
This page took 0.031662 seconds and 5 git commands to generate.