diff options
Diffstat (limited to 'drivers/gpu/drm/arm/hdlcd_crtc.c')
| -rw-r--r-- | drivers/gpu/drm/arm/hdlcd_crtc.c | 11 | 
1 files changed, 5 insertions, 6 deletions
diff --git a/drivers/gpu/drm/arm/hdlcd_crtc.c b/drivers/gpu/drm/arm/hdlcd_crtc.c index afc9cd856501..7030339fa232 100644 --- a/drivers/gpu/drm/arm/hdlcd_crtc.c +++ b/drivers/gpu/drm/arm/hdlcd_crtc.c @@ -18,12 +18,11 @@  #include <drm/drm_atomic.h>  #include <drm/drm_atomic_helper.h>  #include <drm/drm_crtc.h> -#include <drm/drm_fb_cma_helper.h> +#include <drm/drm_fb_dma_helper.h>  #include <drm/drm_fb_helper.h>  #include <drm/drm_framebuffer.h> -#include <drm/drm_gem_cma_helper.h> +#include <drm/drm_gem_dma_helper.h>  #include <drm/drm_of.h> -#include <drm/drm_plane_helper.h>  #include <drm/drm_probe_helper.h>  #include <drm/drm_vblank.h> @@ -252,8 +251,8 @@ static int hdlcd_plane_atomic_check(struct drm_plane *plane,  			return -EINVAL;  		return drm_atomic_helper_check_plane_state(new_plane_state,  							   crtc_state, -							   DRM_PLANE_HELPER_NO_SCALING, -							   DRM_PLANE_HELPER_NO_SCALING, +							   DRM_PLANE_NO_SCALING, +							   DRM_PLANE_NO_SCALING,  							   false, true);  	} @@ -274,7 +273,7 @@ static void hdlcd_plane_atomic_update(struct drm_plane *plane,  		return;  	dest_h = drm_rect_height(&new_plane_state->dst); -	scanout_start = drm_fb_cma_get_gem_addr(fb, new_plane_state, 0); +	scanout_start = drm_fb_dma_get_gem_addr(fb, new_plane_state, 0);  	hdlcd = plane->dev->dev_private;  	hdlcd_write(hdlcd, HDLCD_REG_FB_LINE_LENGTH, fb->pitches[0]);  |