[PATCH] drm/gud: Remove unnecessary logging

2025-07-21 Thread Ruben Wauters
-off-by: Ruben Wauters --- drivers/gpu/drm/gud/gud_drv.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/gpu/drm/gud/gud_drv.c b/drivers/gpu/drm/gud/gud_drv.c index 5385a2126e45..b52a12cbba3e 100644 --- a/drivers/gpu/drm/gud/gud_drv.c +++ b/drivers/gpu/drm/gud/gud_drv.c @@ -620,8 +620,6

Re: DRM GUD driver debug logging

2025-07-19 Thread Ruben Wauters
On Sat, 2025-07-19 at 18:44 +0200, Thomas Zimmermann wrote: > Hi > > Am 17.07.25 um 17:02 schrieb Ruben Wauters: > > Hello > > > > I was taking a look at the code for the gud driver. I am aware this > > driver was recently orphaned and I wish to get up to sp

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

DRM GUD driver debug logging

2025-07-17 Thread Ruben Wauters
the opinion of those that maintain the subsystem, and anyone else that has any opinion. Thank you Ruben Wauters

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

2025-07-01 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-01 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

[PATCH] drm/i915: replace DRM_DEBUG_SELFTEST with DRM_KUNIT_TEST

2025-06-30 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-06-30 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] drm/amdgpu: fix unexpected indentation in docs

2025-04-27 Thread Ruben Wauters
the error, and changes the format of the options to be more in line with others in the file, while still keeping it readable on the code side. Signed-off-by: Ruben Wauters --- drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a

[PATCH] drm/dp_mst: Remove unnecessary vcpi documentation

2024-04-09 Thread Ruben Wauters
Since vcpi has been moved into the atomic payload and out of the port struct, the documentation of vcpi on the port struct is no longer necessary, and is flagged as a warning by make htmldocs Vcpi is also documented elsewhere in this file, in the atomic payload struct itself Signed-off-by: Ruben