diff options
Diffstat (limited to 'drivers/gpu/drm/arm/malidp_drv.c')
| -rw-r--r-- | drivers/gpu/drm/arm/malidp_drv.c | 13 | 
1 files changed, 6 insertions, 7 deletions
diff --git a/drivers/gpu/drm/arm/malidp_drv.c b/drivers/gpu/drm/arm/malidp_drv.c index f25ec4382277..333b88a5efb0 100644 --- a/drivers/gpu/drm/arm/malidp_drv.c +++ b/drivers/gpu/drm/arm/malidp_drv.c @@ -15,17 +15,19 @@  #include <linux/pm_runtime.h>  #include <linux/debugfs.h> -#include <drm/drmP.h>  #include <drm/drm_atomic.h>  #include <drm/drm_atomic_helper.h>  #include <drm/drm_crtc.h> -#include <drm/drm_probe_helper.h> -#include <drm/drm_fb_helper.h> +#include <drm/drm_drv.h>  #include <drm/drm_fb_cma_helper.h> +#include <drm/drm_fb_helper.h> +#include <drm/drm_fourcc.h>  #include <drm/drm_gem_cma_helper.h>  #include <drm/drm_gem_framebuffer_helper.h>  #include <drm/drm_modeset_helper.h>  #include <drm/drm_of.h> +#include <drm/drm_probe_helper.h> +#include <drm/drm_vblank.h>  #include "malidp_drv.h"  #include "malidp_mw.h" @@ -561,15 +563,12 @@ static int malidp_debugfs_init(struct drm_minor *minor)  #endif //CONFIG_DEBUG_FS  static struct drm_driver malidp_driver = { -	.driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_ATOMIC | -			   DRIVER_PRIME, +	.driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_ATOMIC,  	.gem_free_object_unlocked = drm_gem_cma_free_object,  	.gem_vm_ops = &drm_gem_cma_vm_ops,  	.dumb_create = malidp_dumb_create,  	.prime_handle_to_fd = drm_gem_prime_handle_to_fd,  	.prime_fd_to_handle = drm_gem_prime_fd_to_handle, -	.gem_prime_export = drm_gem_prime_export, -	.gem_prime_import = drm_gem_prime_import,  	.gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,  	.gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,  	.gem_prime_vmap = drm_gem_cma_prime_vmap,  |