Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/i915: replace DRM_DEBUG_SELFTEST with DRM_KUNIT_TEST

DRM_DEBUG_SELFTEST was removed in commit fc8d29e298cf (drm: selftest:
convert drm_mm selftest to KUnit) and all functions under it were
converted to KUnit, under the DRM_KUNIT_TEST option

This conversion however did not occur in the Kconfig.debug file in the
i915 directory.

This patch replaces the select for DRM_DEBUG_SELFTEST, an option that no
longer exists, with the correct select, DRM_KUNIT_TEST.

Signed-off-by: Ruben Wauters <rubenru09@aol.com>
Link: https://lore.kernel.org/r/20250701115511.5445-1-rubenru09@aol.com
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>

authored by

Ruben Wauters and committed by
Rodrigo Vivi
17133255 f9cc4616

+1 -1
+1 -1
drivers/gpu/drm/i915/Kconfig.debug
··· 50 50 select DRM_VGEM # used by igt/prime_vgem (dmabuf interop checks) 51 51 select DRM_DEBUG_MM if DRM=y 52 52 select DRM_EXPORT_FOR_TESTS if m 53 - select DRM_DEBUG_SELFTEST 53 + select DRM_KUNIT_TEST 54 54 select DMABUF_SELFTESTS 55 55 select SW_SYNC # signaling validation framework (igt/syncobj*) 56 56 select DRM_I915_WERROR