[PATCH 1/1] drm/display: Fix building with GCC 15

2024-10-02 Thread Brahmajit Das
e new line character. This should let us build the kernel with GCC 15. Signed-off-by: Brahmajit Das --- drivers/gpu/drm/display/drm_dp_dual_mode_helper.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c b/drivers/gpu/d

[PATCH 1/1] drm/display: Fix building with GCC 15

2024-10-02 Thread Brahmajit Das
e new line character. This should let us build the kernel with GCC 15. Signed-off-by: Brahmajit Das --- drivers/gpu/drm/display/drm_dp_dual_mode_helper.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c b/drivers/gpu/d

[PATCH v3] drm/display: Fix building with GCC 15

2024-10-03 Thread Brahmajit Das
NULL line character. This should let us build the kernel with GCC 15. Signed-off-by: Brahmajit Das --- drivers/gpu/drm/display/drm_dp_dual_mode_helper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c b/drivers/gpu/d

[PATCH v3] drm/display: Fix building with GCC 15

2024-10-03 Thread Brahmajit Das
NULL line character. This should let us build the kernel with GCC 15. Signed-off-by: Brahmajit Das --- drivers/gpu/drm/display/drm_dp_dual_mode_helper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c b/drivers/gpu/d

[PATCH v2] drm/display: Fix building with GCC 15

2024-10-03 Thread Brahmajit Das
e new line character. This should let us build the kernel with GCC 15. Signed-off-by: Brahmajit Das --- drivers/gpu/drm/display/drm_dp_dual_mode_helper.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c b/drivers/gpu/d

[PATCH 1/1] drm/amd: Fix malformed kerneldoc comment

2025-04-28 Thread Brahmajit Das
7;DC_DEBUG_MASK' Adding missing colon symbol and making kernel doc happy :) Signed-off-by: Brahmajit Das --- drivers/gpu/drm/amd/include/amd_shared.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/include/amd_shared.h b/drivers/gpu/drm/amd/includ

[RFC PATCH 2/2] drm/i915: use new debugfs device-centered functions

2025-08-11 Thread Brahmajit Das
Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das --- drivers/gpu/drm/i915/display/intel_display_debugfs.c | 7 +++ 1 file changed, 3

[RFC PATCH 1/2] drm/i915/debugfs: use new debugfs device-centered functions

2025-08-11 Thread Brahmajit Das
Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das --- drivers/gpu/drm/i915/i915_debugfs.c | 7 +++ 1 file changed, 3 insertions(+), 4

[RFC PATCH 0/2] use new debugfs device-centered functions

2025-08-11 Thread Brahmajit Das
Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Refer: https://docs.kernel.org/gpu/todo.html#clean-up-the-debugfs-support Brahmajit Das (2): drm/i915/debugfs: use new

[PATCH] drm/virtio: use new debugfs device-centered functions

2025-08-09 Thread Brahmajit Das
Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das --- drivers/gpu/drm/virtio/virtgpu_debugfs.c | 7 +++ 1 file changed, 3 insertions

[RFC PATCH 2/2] drm/i915: use new debugfs device-centered functions

2025-08-12 Thread Brahmajit Das
Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das --- drivers/gpu/drm/i915/display/intel_display_debugfs.c | 7 +++ 1 file changed, 3

[RFC PATCH 0/2] use new debugfs device-centered functions

2025-08-12 Thread Brahmajit Das
Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device. V2 changes: based on drm-tip. Refer: https://docs.kernel.org/gpu/todo.html#clean-up-the-debugfs-support Brahmajit Das (2): drm/i915

[RFC PATCH 0/2] use new debugfs device-centered functions

2025-08-12 Thread Brahmajit Das
Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device. Refer: https://docs.kernel.org/gpu/todo.html#clean-up-the-debugfs-support Brahmajit Das (2): drm/i915/debugfs: use new debugfs device

[RFC PATCH v2 1/2] drm/i915/debugfs: use new debugfs device-centered functions

2025-08-12 Thread Brahmajit Das
Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das --- drivers/gpu/drm/i915/i915_debugfs.c | 7 +++ 1 file changed, 3 insertions(+), 4

[RFC PATCH v2 2/2] drm/i915: use new debugfs device-centered functions

2025-08-12 Thread Brahmajit Das
Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das --- drivers/gpu/drm/i915/display/intel_display_debugfs.c | 7 +++ 1 file changed, 3

[RFC PATCH 1/2] drm/i915/debugfs: use new debugfs device-centered functions

2025-08-12 Thread Brahmajit Das
Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das --- drivers/gpu/drm/i915/i915_debugfs.c | 7 +++ 1 file changed, 3 insertions(+), 4