Re: [PATCH] drm: Remove unused function rcar_cmm_write

2024-06-19 Thread Laurent Pinchart
On Wed, Jun 19, 2024 at 12:16:47PM +0300, Sergey Shtylyov wrote: > On 6/19/24 10:54 AM, Jiapeng Chong wrote: > > > The function are defined in the rcar_cmm.c file, but not called > >s/are/is/. > > > elsewhere, so delete the unused function. > >Anywhere, maybe? I'll fix those. Reviewed

Re: [PATCH] drm: Remove unused function rcar_cmm_write

2024-06-19 Thread Sergey Shtylyov
On 6/19/24 10:54 AM, Jiapeng Chong wrote: > The function are defined in the rcar_cmm.c file, but not called s/are/is/. > elsewhere, so delete the unused function. Anywhere, maybe? > drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c:35:19: warning: unused function > 'rcar_cmm_read'. > > Report

Re: [PATCH] drm: Remove unused function rcar_cmm_write

2024-06-19 Thread Kieran Bingham
Quoting Jiapeng Chong (2024-06-19 08:54:36) > The function are defined in the rcar_cmm.c file, but not called > elsewhere, so delete the unused function. > > drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c:35:19: warning: unused function > 'rcar_cmm_read'. Indeed it's unused. Reviewed-by: Kieran Bin

[PATCH] drm: Remove unused function rcar_cmm_write

2024-06-19 Thread Jiapeng Chong
The function are defined in the rcar_cmm.c file, but not called elsewhere, so delete the unused function. drivers/gpu/drm/renesas/rcar-du/rcar_cmm.c:35:19: warning: unused function 'rcar_cmm_read'. Reported-by: Abaci Robot Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=9364 Signed-off-b

[PATCH] drm: remove unused function 'drm_property_unreference_blob_locked'

2015-05-20 Thread Jani Nikula
On Wed, 20 May 2015, Arnd Bergmann wrote: > This function was added recently but never used, and causes > a compile warning: > > drivers/gpu/drm/drm_crtc.c:4324:13: warning: > 'drm_property_unreference_blob_locked' defined but not used > [-Wunused-function] > > Removing that function avoids the

[PATCH] drm: remove unused function 'drm_property_unreference_blob_locked'

2015-05-19 Thread Arnd Bergmann
This function was added recently but never used, and causes a compile warning: drivers/gpu/drm/drm_crtc.c:4324:13: warning: 'drm_property_unreference_blob_locked' defined but not used [-Wunused-function] Removing that function avoids the warning. It can simply be put back in case it is needed in

[PATCH] drm: remove unused function

2015-05-14 Thread Sudip Mukherjee
this function was not used anywhere and was giving a build warning. Signed-off-by: Sudip Mukherjee --- drivers/gpu/drm/drm_crtc.c | 19 --- 1 file changed, 19 deletions(-) diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index 4059f06..6e60f71 100644 --- a/dr

[PATCH] drm: remove unused function

2015-05-14 Thread Daniel Stone
Hi Sudip, On 14 May 2015 at 12:14, Sudip Mukherjee wrote: > this function was not used anywhere and was giving a build warning. Thanks for the patch, but this function is used in following patches that are in the process of being merged. This shouldn't have snuck in in the earlier patch; apologi