[PATCH] drm/vc4: bo: Fix unused variable warning

Maíra Canal mcanal at igalia.com
Fri Jan 13 16:10:00 UTC 2023


On 1/13/23 12:46, Maxime Ripard wrote:
> Commit 07a2975c65f2 ("drm/vc4: bo: Fix drmm_mutex_init memory hog")
> removed the only user of the ret variable, but didn't remove the

s/user/use

> variable itself leading to a unused variable warning.
> 
> Remove that variable.
> 
> Reported-by: Stephen Rothwell <sfr at canb.auug.org.au>
> Fixes: 07a2975c65f2 ("drm/vc4: bo: Fix drmm_mutex_init memory hog")
> Signed-off-by: Maxime Ripard <maxime at cerno.tech>

With that small nit:

Reviewed-by: Maíra Canal <mcanal at igalia.com>

Best Regards,
- Maíra Canal

> ---
>   drivers/gpu/drm/vc4/vc4_bo.c | 1 -
>   1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/vc4/vc4_bo.c b/drivers/gpu/drm/vc4/vc4_bo.c
> index 29ce2fa72cc4..c5947ed8cc81 100644
> --- a/drivers/gpu/drm/vc4/vc4_bo.c
> +++ b/drivers/gpu/drm/vc4/vc4_bo.c
> @@ -395,7 +395,6 @@ struct drm_gem_object *vc4_create_object(struct drm_device *dev, size_t size)
>   {
>   	struct vc4_dev *vc4 = to_vc4_dev(dev);
>   	struct vc4_bo *bo;
> -	int ret;
>   
>   	if (WARN_ON_ONCE(vc4->is_vc5))
>   		return ERR_PTR(-ENODEV);


More information about the dri-devel mailing list