return IRQ_HANDLED;
 }
 
-static struct drm_framebuffer *atmel_hlcdc_fb_create(struct drm_device *dev,
-               struct drm_file *file_priv, const struct drm_mode_fb_cmd2 *mode_cmd)
-{
-       return drm_gem_fb_create(dev, file_priv, mode_cmd);
-}
-
 struct atmel_hlcdc_dc_commit {
        struct work_struct work;
        struct drm_device *dev;
 }
 
 static const struct drm_mode_config_funcs mode_config_funcs = {
-       .fb_create = atmel_hlcdc_fb_create,
+       .fb_create = drm_gem_fb_create,
        .atomic_check = drm_atomic_helper_check,
        .atomic_commit = atmel_hlcdc_dc_atomic_commit,
 };