[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <baf0a304698c7136c95c3fbb13c90529a51b9e06.camel@redhat.com>
Date: Fri, 29 Apr 2022 15:38:31 -0400
From: Lyude Paul <lyude@...hat.com>
To: cgel.zte@...il.com, bskeggs@...hat.com
Cc: kherbst@...hat.com, dri-devel@...ts.freedesktop.org,
nouveau@...ts.freedesktop.org, linux-kernel@...r.kernel.org,
Minghao Chi <chi.minghao@....com.cn>,
Zeal Robot <zealci@....com.cn>
Subject: Re: [PATCH] drm/nouveau: simplify the return expression of
nouveau_debugfs_init()
Reviewed-by: Lyude Paul <lyude@...hat.com>
Will push to drm-misc-next in a bit
(Kind of impressed that a bot managed to catch this, considering the route
from here to the code capable of returning < 0 or 0 was definitely not
obvious)
On Fri, 2022-04-29 at 09:03 +0000, cgel.zte@...il.com wrote:
> From: Minghao Chi <chi.minghao@....com.cn>
>
> Simplify the return expression.
>
> Reported-by: Zeal Robot <zealci@....com.cn>
> Signed-off-by: Minghao Chi <chi.minghao@....com.cn>
> ---
> drivers/gpu/drm/nouveau/nouveau_debugfs.c | 8 +-------
> 1 file changed, 1 insertion(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/nouveau/nouveau_debugfs.c
> b/drivers/gpu/drm/nouveau/nouveau_debugfs.c
> index 1cbe01048b93..76b621f99916 100644
> --- a/drivers/gpu/drm/nouveau/nouveau_debugfs.c
> +++ b/drivers/gpu/drm/nouveau/nouveau_debugfs.c
> @@ -255,19 +255,13 @@ nouveau_drm_debugfs_init(struct drm_minor *minor)
> int
> nouveau_debugfs_init(struct nouveau_drm *drm)
> {
> - int ret;
> -
> drm->debugfs = kzalloc(sizeof(*drm->debugfs), GFP_KERNEL);
> if (!drm->debugfs)
> return -ENOMEM;
>
> - ret = nvif_object_ctor(&drm->client.device.object, "debugfsCtrl", 0,
> + return nvif_object_ctor(&drm->client.device.object, "debugfsCtrl",
> 0,
> NVIF_CLASS_CONTROL, NULL, 0,
> &drm->debugfs->ctrl);
> - if (ret)
> - return ret;
> -
> - return 0;
> }
>
> void
--
Cheers,
Lyude Paul (she/her)
Software Engineer at Red Hat
Powered by blists - more mailing lists