[PATCH] drm/i915: replace DRM_DEBUG_SELFTEST with DRM_KUNIT_TEST

2025-07-02 Thread Ruben Wauters
DRM_DEBUG_SELFTEST was replaced with DRM_KUNIT_TEST. This patch replaces the select in Kconfig.debug to use the replacement. Signed-off-by: Ruben Wauters --- drivers/gpu/drm/i915/Kconfig.debug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915

Re: [PATCH] drm/i915: replace DRM_DEBUG_SELFTEST with DRM_KUNIT_TEST

2025-07-02 Thread Ruben Wauters
On Tue, 2025-07-01 at 03:50 +0100, Ruben Wauters wrote: > DRM_DEBUG_SELFTEST was replaced with DRM_KUNIT_TEST. > > This patch replaces the select in Kconfig.debug to use the > replacement. > > Signed-off-by: Ruben Wauters > --- >  drivers/gpu/drm/i915/Kconfig.debug | 2

[PATCH v2] drm/i915: replace DRM_DEBUG_SELFTEST with DRM_KUNIT_TEST

2025-07-02 Thread Ruben Wauters
the select for DRM_DEBUG_SELFTEST, an option that no longer exists, with the correct select, DRM_KUNIT_TEST. Signed-off-by: Ruben Wauters --- v2 changes: - update commit message to contain more detail about the background of the change and why it is necessary --- drivers/gpu/drm/i915

Re: [PATCH] drm/i915: replace DRM_DEBUG_SELFTEST with DRM_KUNIT_TEST

2025-07-02 Thread Ruben Wauters
On Tue, 2025-07-01 at 09:28 +0300, Jani Nikula wrote: > On Tue, 01 Jul 2025, Ruben Wauters wrote: > > DRM_DEBUG_SELFTEST was replaced with DRM_KUNIT_TEST. > > > > This patch replaces the select in Kconfig.debug to use the > > replacement. > > Why? That's t

Re: [PATCH v2] drm/i915: replace DRM_DEBUG_SELFTEST with DRM_KUNIT_TEST

2025-07-18 Thread Ruben Wauters
On Tue, 2025-07-01 at 12:54 +0100, Ruben Wauters wrote: > 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 d

Re: [PATCH] drm/i915: Fix selecting CONFIG_DRM_KUNIT_TEST in debug builds

2025-07-24 Thread Ruben Wauters
sure if that's intentional or not but I guess it is a problem regardless > > But well, let's fix our own mess on our side. I'm sorry for missing > this detail. :/ > > Reviewed-by: Rodrigo Vivi > > > > > Fixes: 17133255a322 ("drm/i915: replace DRM