LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Alan Stern <stern@rowland.harvard.edu>
To: Zhaolei <zhaolei@cn.fujitsu.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	<dbrownell@users.sourceforge.net>, <linux-usb@vger.kernel.org>
Subject: Re: [PATCH] Fix debugfs_create_file's error checking method for usb/gadget/
Date: Fri, 17 Oct 2008 11:18:15 -0400 (EDT)	[thread overview]
Message-ID: <Pine.LNX.4.44L0.0810171114500.2178-100000@iolanthe.rowland.org> (raw)
In-Reply-To: <48F88B22.6010102@cn.fujitsu.com>

On Fri, 17 Oct 2008, Zhaolei wrote:

> Hi,
> 
> debugfs_create_file() returns NULL if an error occurs, returns -ENODEV
> when debugfs is not enabled in the kernel.
> 
> Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
> ---
>  drivers/usb/gadget/s3c2410_udc.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/usb/gadget/s3c2410_udc.c b/drivers/usb/gadget/s3c2410_udc.c
> index 29d13eb..4ba50ef 100644
> --- a/drivers/usb/gadget/s3c2410_udc.c
> +++ b/drivers/usb/gadget/s3c2410_udc.c
> @@ -1894,7 +1894,7 @@ static int s3c2410_udc_probe(struct platform_device *pdev)
>  		udc->regs_info = debugfs_create_file("registers", S_IRUGO,
>  				s3c2410_udc_debugfs_root,
>  				udc, &s3c2410_udc_debugfs_fops);
> -		if (IS_ERR(udc->regs_info)) {
> +		if (IS_ERR(udc->regs_info) || !udc->regs_info) {
>  			dev_warn(dev, "debugfs file creation failed %ld\n",
>  				 PTR_ERR(udc->regs_info));
>  			udc->regs_info = NULL;

In fact the original code and your patch are both wrong.  The test 
should simply be:

		if (!udc->regs_info) {
			dev_warn(dev, "debugfs file creation failed\n");

(The line setting udc->regs_info to NULL can then be removed.)

The driver should be able to work even if debugfs isn't enabled in the 
kernel.

Alan Stern


  reply	other threads:[~2008-10-17 15:18 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-17 12:54 Zhaolei
2008-10-17 15:18 ` Alan Stern [this message]
2008-10-20  1:15   ` Zhaolei
2008-10-20  1:19     ` Zhaolei
2008-10-20  3:46     ` Greg KH
2008-10-20 10:53       ` [PATCH v2] " Zhaolei

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=Pine.LNX.4.44L0.0810171114500.2178-100000@iolanthe.rowland.org \
    --to=stern@rowland.harvard.edu \
    --cc=dbrownell@users.sourceforge.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=zhaolei@cn.fujitsu.com \
    --subject='Re: [PATCH] Fix debugfs_create_file'\''s error checking method for usb/gadget/' \
    /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

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