dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Jyri Sarha <jsarha@ti.com>
To: Wambui Karuga <wambui.karugax@gmail.com>, <tomi.valkeinen@ti.com>,
	<airlied@linux.ie>, <daniel@ffwll.ch>
Cc: gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org,
	dri-devel@lists.freedesktop.org
Subject: Re: [PATCH] drm/tilcdc: remove check for return value of debugfs functions.
Date: Thu, 27 Feb 2020 12:56:15 +0200	[thread overview]
Message-ID: <5f96fcbb-9e21-c741-3094-4c42e1634811@ti.com> (raw)
In-Reply-To: <20200218155534.15504-2-wambui.karugax@gmail.com>

On 18/02/2020 17:55, Wambui Karuga wrote:
> Remove the check and error handling of the return value of
> drm_debugfs_create_files as it is not needed in tilcdc_debugfs_init.
> Also remove local variables that are not used after the changes.
> 
> Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>

Reviewed-by: Jyri Sarha <jsarha@ti.com>
Tested-by: Jyri Sarha <jsarha@ti.com>

I'll merge this to drm-misc-next tomorrow.

Thank you for the patch,
Jyri


> ---
>  drivers/gpu/drm/tilcdc/tilcdc_drv.c | 15 ++++-----------
>  1 file changed, 4 insertions(+), 11 deletions(-)
> 
> diff --git a/drivers/gpu/drm/tilcdc/tilcdc_drv.c b/drivers/gpu/drm/tilcdc/tilcdc_drv.c
> index 0791a0200cc3..3f7071eb9c78 100644
> --- a/drivers/gpu/drm/tilcdc/tilcdc_drv.c
> +++ b/drivers/gpu/drm/tilcdc/tilcdc_drv.c
> @@ -480,24 +480,17 @@ static struct drm_info_list tilcdc_debugfs_list[] = {
>  
>  static int tilcdc_debugfs_init(struct drm_minor *minor)
>  {
> -	struct drm_device *dev = minor->dev;
>  	struct tilcdc_module *mod;
> -	int ret;
>  
> -	ret = drm_debugfs_create_files(tilcdc_debugfs_list,
> -			ARRAY_SIZE(tilcdc_debugfs_list),
> -			minor->debugfs_root, minor);
> +	drm_debugfs_create_files(tilcdc_debugfs_list,
> +				 ARRAY_SIZE(tilcdc_debugfs_list),
> +				 minor->debugfs_root, minor);
>  
>  	list_for_each_entry(mod, &module_list, list)
>  		if (mod->funcs->debugfs_init)
>  			mod->funcs->debugfs_init(mod, minor);
>  
> -	if (ret) {
> -		dev_err(dev->dev, "could not install tilcdc_debugfs_list\n");
> -		return ret;
> -	}
> -
> -	return ret;
> +	return 0;
>  }
>  #endif
>  
> 


-- 
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki.
Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

      reply	other threads:[~2020-02-27 10:56 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-18 15:55 [PATCH] drm/tegra: remove checks for debugfs functions return value Wambui Karuga
2020-02-18 15:55 ` [PATCH] drm/tilcdc: remove check for return value of debugfs functions Wambui Karuga
2020-02-27 10:56   ` Jyri Sarha [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5f96fcbb-9e21-c741-3094-4c42e1634811@ti.com \
    --to=jsarha@ti.com \
    --cc=airlied@linux.ie \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=tomi.valkeinen@ti.com \
    --cc=wambui.karugax@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).