drm/armada: Use drm_fb_helper_fill_info
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 26 Mar 2019 13:19:52 +0000 (14:19 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 27 Mar 2019 08:56:14 +0000 (09:56 +0100)
Only changes the name of the fb from "armada-drmfb" to armadadrmfb.

v2: Rebase

v3: Fix commit message (Noralf)

Reviewed-by: Noralf Trønnes <noralf@tronnes.org>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Cc: Russell King <linux@armlinux.org.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20190326132008.11781-5-daniel.vetter@ffwll.ch
drivers/gpu/drm/armada/armada_fbdev.c

index 8d23700848df7bc4a359f8681515dae6b92373bf..1e7140f005a56467340e99c02b83144598de04ff 100644 (file)
@@ -78,8 +78,6 @@ static int armada_fbdev_create(struct drm_fb_helper *fbh,
                goto err_fballoc;
        }
 
-       strlcpy(info->fix.id, "armada-drmfb", sizeof(info->fix.id));
-       info->par = fbh;
        info->fbops = &armada_fb_ops;
        info->fix.smem_start = obj->phys_addr;
        info->fix.smem_len = obj->obj.size;
@@ -87,9 +85,7 @@ static int armada_fbdev_create(struct drm_fb_helper *fbh,
        info->screen_base = ptr;
        fbh->fb = &dfb->fb;
 
-       drm_fb_helper_fill_fix(info, dfb->fb.pitches[0],
-                              dfb->fb.format->depth);
-       drm_fb_helper_fill_var(info, fbh, sizes->fb_width, sizes->fb_height);
+       drm_fb_helper_fill_info(info, fbh, sizes);
 
        DRM_DEBUG_KMS("allocated %dx%d %dbpp fb: 0x%08llx\n",
                dfb->fb.width, dfb->fb.height, dfb->fb.format->cpp[0] * 8,