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
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
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
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
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
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
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
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