All of lore.kernel.org
 help / color / mirror / Atom feed
From: Heikki Krogerus <heikki.krogerus@linux.intel.com>
To: Liu Shixin <liushixin2@huawei.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-usb@vger.kernel.org
Subject: Re: [PATCH] usb: ulpi: use DEFINE_SHOW_ATTRIBUTE to simplify ulpi_regs
Date: Thu, 22 Sep 2022 17:23:46 +0300	[thread overview]
Message-ID: <Yyxv8ksuLGncYf+X@kuha.fi.intel.com> (raw)
In-Reply-To: <20220922142505.3248167-1-liushixin2@huawei.com>

On Thu, Sep 22, 2022 at 10:25:05PM +0800, Liu Shixin wrote:
> Use DEFINE_SHOW_ATTRIBUTE helper macro to simplify the code.
> No functional change.
> 
> Signed-off-by: Liu Shixin <liushixin2@huawei.com>

Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>

> ---
>  drivers/usb/common/ulpi.c | 20 +++-----------------
>  1 file changed, 3 insertions(+), 17 deletions(-)
> 
> diff --git a/drivers/usb/common/ulpi.c b/drivers/usb/common/ulpi.c
> index 0a4f441aff8f..d7c8461976ce 100644
> --- a/drivers/usb/common/ulpi.c
> +++ b/drivers/usb/common/ulpi.c
> @@ -233,7 +233,7 @@ static int ulpi_read_id(struct ulpi *ulpi)
>  	return 0;
>  }
>  
> -static int ulpi_regs_read(struct seq_file *seq, void *data)
> +static int ulpi_regs_show(struct seq_file *seq, void *data)
>  {
>  	struct ulpi *ulpi = seq->private;
>  
> @@ -269,21 +269,7 @@ static int ulpi_regs_read(struct seq_file *seq, void *data)
>  
>  	return 0;
>  }
> -
> -static int ulpi_regs_open(struct inode *inode, struct file *f)
> -{
> -	struct ulpi *ulpi = inode->i_private;
> -
> -	return single_open(f, ulpi_regs_read, ulpi);
> -}
> -
> -static const struct file_operations ulpi_regs_ops = {
> -	.owner = THIS_MODULE,
> -	.open = ulpi_regs_open,
> -	.release = single_release,
> -	.read = seq_read,
> -	.llseek = seq_lseek
> -};
> +DEFINE_SHOW_ATTRIBUTE(ulpi_regs);
>  
>  #define ULPI_ROOT debugfs_lookup(KBUILD_MODNAME, NULL)
>  
> @@ -316,7 +302,7 @@ static int ulpi_register(struct device *dev, struct ulpi *ulpi)
>  	}
>  
>  	root = debugfs_create_dir(dev_name(dev), ULPI_ROOT);
> -	debugfs_create_file("regs", 0444, root, ulpi, &ulpi_regs_ops);
> +	debugfs_create_file("regs", 0444, root, ulpi, &ulpi_regs_fops);
>  
>  	dev_dbg(&ulpi->dev, "registered ULPI PHY: vendor %04x, product %04x\n",
>  		ulpi->id.vendor, ulpi->id.product);
> -- 
> 2.25.1

-- 
heikki

      reply	other threads:[~2022-09-22 14:24 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-22 14:25 [PATCH] usb: ulpi: use DEFINE_SHOW_ATTRIBUTE to simplify ulpi_regs Liu Shixin
2022-09-22 14:23 ` Heikki Krogerus [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=Yyxv8ksuLGncYf+X@kuha.fi.intel.com \
    --to=heikki.krogerus@linux.intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=liushixin2@huawei.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.