Skip to content

Commit 0c4932f

Browse files
lc-wangtdz
authored andcommitted
drm/tiny: pixpaper: Fix missing dependency on DRM_GEM_SHMEM_HELPER
The driver uses drm_gem_shmem_prime_import_no_map() and drm_gem_shmem_dumb_create(), but the Kconfig currently selects DRM_GEM_DMA_HELPER instead of DRM_GEM_SHMEM_HELPER. This causes link failures when DRM_GEM_SHMEM_HELPER is not enabled. Select DRM_GEM_SHMEM_HELPER to fix the build. Reported-by: kernel test robot <lkp@intel.com> Closes: https://lore.kernel.org/oe-kbuild-all/202509220320.gfFZjmyg-lkp@intel.com/ Fixes: c9e7063 ("drm: tiny: Add support for Mayqueen Pixpaper e-ink panel") Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de> Signed-off-by: LiangCheng Wang <zaq14760@gmail.com> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Link: https://lore.kernel.org/r/20250922-bar-v1-1-b2a1f54ace82@gmail.com
1 parent 3e6339a commit 0c4932f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/tiny/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ config DRM_PIXPAPER
8686
tristate "DRM support for PIXPAPER display panels"
8787
depends on DRM && SPI
8888
select DRM_CLIENT_SELECTION
89-
select DRM_GEM_DMA_HELPER
89+
select DRM_GEM_SHMEM_HELPER
9090
select DRM_KMS_HELPER
9191
help
9292
DRM driver for the Mayqueen Pixpaper e-ink display panel.

0 commit comments

Comments
 (0)