Re: [PATCH] drm/sched: struct member doc fix

2025-09-15 Thread Luc Ma
Hi, On Mon, 15 Sept 2025 at 20:12, Philipp Stanner wrote: > > On Fri, 2025-09-12 at 21:44 +0800, Luc Ma wrote: > > The mentioned function has been renamed since commit 180fc134d712 > > ("drm/scheduler: Rename cleanup functions v2."), so let it refer to > > the

[PATCH v2] drm/sched: struct member doc fix

2025-09-15 Thread Luc Ma
The mentioned function has been renamed since commit 180fc134d712 ("drm/scheduler: Rename cleanup functions v2."), so let it refer to the current one. v2: use proper pattern for function cross-reference Signed-off-by: Luc Ma --- include/drm/gpu_scheduler.h | 2 +- 1 file changed, 1

[PATCH] drm/sched: struct member doc fix

2025-09-13 Thread Luc Ma
The mentioned function has been renamed since commit 180fc134d712 ("drm/scheduler: Rename cleanup functions v2."), so let it refer to the current one. Signed-off-by: Luc Ma --- include/drm/gpu_scheduler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i

Re: [PATCH v14 19/28] drm/connector: hdmi: Add RGB Quantization Range to the connector state

2024-05-23 Thread Luc Ma
Hi, On Tue, 21 May 2024 at 18:52, Maxime Ripard wrote: > > HDMI controller drivers will need to figure out the RGB range they need > to configure based on a mode and property values. Let's expose that in > the HDMI connector state so drivers can just use that value. > > Reviewed-by: Dave Stevenso

Re: [PATCH] drm: Combine identical if/elif code blocks

2024-05-15 Thread Luc Ma
Hi, On Wed, 15 May 2024 at 17:31, Thorsten Blum wrote: > > On 15. May 2024, at 11:22, Thorsten Blum wrote: > > On 15. May 2024, at 09:43, Luc Ma wrote: > >> On Tue, 14 May 2024 at 19:37, Thorsten Blum > >> wrote: > >>> > >>> Merge the

Re: [PATCH] drm: Combine identical if/elif code blocks

2024-05-15 Thread Luc Ma
Hi, On Tue, 14 May 2024 at 19:37, Thorsten Blum wrote: > > Merge the identical if/elif code blocks and remove the following two > warnings reported by make includecheck: > > asm/ioctl.h is included more than once > linux/types.h is included more than once > > Signed-off-by: Thorst

[PATCH v2] dma-buf: Fix the typo in DMA-BUF statistics doc

2023-07-18 Thread Luc Ma
From: Luc Ma The kernel-doc for DMA-BUF statistics mentions /sys/kernel/dma-buf/buffers but the correct path is /sys/kernel/dmabuf/buffers instead. Signed-off-by: Luc Ma Reviewed-by: Javier Martinez Canillas --- drivers/dma-buf/dma-buf-sysfs-stats.c | 2 +- 1 file changed, 1 insertion(+), 1

Re: [PATCH] dma-buf: remove unintended hyphen in the sysfs path

2023-07-18 Thread Luc Ma
Hi, On Tue, 18 Jul 2023 at 14:39, Javier Martinez Canillas wrote: > > Luc Ma writes: > > > From: Luc Ma > > > > Signed-off-by: Luc Ma > > --- > > Even when is a trivial change I would add something as commit message, i.e: > > "The kerne

[PATCH] dma-buf: remove unintended hyphen in the sysfs path

2023-07-17 Thread Luc Ma
From: Luc Ma Signed-off-by: Luc Ma --- drivers/dma-buf/dma-buf-sysfs-stats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma-buf/dma-buf-sysfs-stats.c b/drivers/dma-buf/dma-buf-sysfs-stats.c index 6cfbbf0720bd..b5b62e40ccc1 100644 --- a/drivers/dma-buf/dma-buf

[PATCH v2 RESEND] drm/vram-helper: fix function names in vram helper doc

2023-05-07 Thread Luc Ma
From: Luc Ma Refer to drmm_vram_helper_init() instead of the non-existent drmm_vram_helper_alloc_mm(). Fixes: a5f23a72355d ("drm/vram-helper: Managed vram helpers") Signed-off-by: Luc Ma --- drivers/gpu/drm/drm_gem_vram_helper.c | 6 +++--- 1 file changed, 3 insertions(+), 3

Re: [PATCH v2] drm/vram-helper: fix function names in vram helper doc

2023-02-28 Thread Luc Ma
On Tue, 28 Feb 2023 at 16:11, Thomas Zimmermann wrote: > > Hi > > Am 28.02.23 um 02:24 schrieb Luc Ma: > > Refer to drmm_vram_helper_init() instead of the non-existent > > drmm_vram_helper_alloc_mm(). > > > > Fixes: a5f23a72355d ("drm/vram-helper: Managed

[PATCH v2] drm/vram-helper: fix function names in vram helper doc

2023-02-27 Thread Luc Ma
Refer to drmm_vram_helper_init() instead of the non-existent drmm_vram_helper_alloc_mm(). Fixes: a5f23a72355d ("drm/vram-helper: Managed vram helpers") Signed-off-by: Luc Ma --- v1 -> v2: improved commit message and add changelog drivers/gpu/drm/drm_gem_vram_helper.c | 6 +++--- 1

[PATCH] drm/vram-helper: fix typos in vram helper doc

2023-02-27 Thread Luc Ma
Fixes: a5f23a72355d ("drm/vram-helper: Managed vram helpers") Signed-off-by: Luc Ma --- drivers/gpu/drm/drm_gem_vram_helper.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/drm_gem_vram_helper.c b/drivers/gpu/drm/drm_gem_vram_help