]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
drm/tiny/hx8357d: Use fbdev-dma
authorThomas Zimmermann <tzimmermann@suse.de>
Fri, 19 Apr 2024 08:29:25 +0000 (10:29 +0200)
committerThomas Zimmermann <tzimmermann@suse.de>
Thu, 2 May 2024 09:33:27 +0000 (11:33 +0200)
Implement fbdev emulation with fbdev-dma. Fbdev-dma now supports
damage handling, which is required by hx8357d. Avoids the overhead of
fbdev-generic's additional shadow buffering. No functional changes.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240419083331.7761-33-tzimmermann@suse.de
drivers/gpu/drm/tiny/hx8357d.c

index cdc4486e059b5b8ea3ef7aca9b5854b711854281..2e631282edeb492962ff781f6e584d3656a10512 100644 (file)
@@ -18,7 +18,7 @@
 
 #include <drm/drm_atomic_helper.h>
 #include <drm/drm_drv.h>
-#include <drm/drm_fbdev_generic.h>
+#include <drm/drm_fbdev_dma.h>
 #include <drm/drm_gem_atomic_helper.h>
 #include <drm/drm_gem_dma_helper.h>
 #include <drm/drm_managed.h>
@@ -256,7 +256,7 @@ static int hx8357d_probe(struct spi_device *spi)
 
        spi_set_drvdata(spi, drm);
 
-       drm_fbdev_generic_setup(drm, 0);
+       drm_fbdev_dma_setup(drm, 0);
 
        return 0;
 }