All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nicolin Chen <nicoleotsuka@gmail.com>
To: Fabio Estevam <festevam@gmail.com>
Cc: Fabio Estevam <fabio.estevam@freescale.com>,
	alsa-devel@alsa-project.org, broonie@kernel.org
Subject: Re: [PATCH] ASoC: fsl_esai: Use dev_name() for registering the irq
Date: Mon, 29 Dec 2014 15:54:24 -0800	[thread overview]
Message-ID: <20141229235424.GA2870@Alpha> (raw)
In-Reply-To: <1419890246-21985-1-git-send-email-festevam@gmail.com>

On Mon, Dec 29, 2014 at 07:57:26PM -0200, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> The 'name' array is currently stored inside the fsl_esai private structure only
> for registering the interrupt name.
> 
> This can be simplified by registering it with dev_name() instead.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Acked-by: Nicolin Chen <nicoleotsuka@gmail.com>

The name from dev_name() is a little different but doesn't matter.
The code looks neater now. I think we may also apply similar ones
to other drivers as well -- ASRC, SPDIF, etc. Would you like to
send the patches? Otherwise, I can do this instead :)

> ---
>  sound/soc/fsl/fsl_esai.c | 5 +----
>  1 file changed, 1 insertion(+), 4 deletions(-)
> 
> diff --git a/sound/soc/fsl/fsl_esai.c b/sound/soc/fsl/fsl_esai.c
> index 1c08ab1..dbe9204 100644
> --- a/sound/soc/fsl/fsl_esai.c
> +++ b/sound/soc/fsl/fsl_esai.c
> @@ -44,7 +44,6 @@
>   * @sck_div: if using PSR/PM dividers for SCKx clock
>   * @slave_mode: if fully using DAI slave mode
>   * @synchronous: if using tx/rx synchronous mode
> - * @name: driver name
>   */
>  struct fsl_esai {
>  	struct snd_dmaengine_dai_dma_data dma_params_rx;
> @@ -63,7 +62,6 @@ struct fsl_esai {
>  	bool sck_div[2];
>  	bool slave_mode;
>  	bool synchronous;
> -	char name[32];
>  };
>  
>  static irqreturn_t esai_isr(int irq, void *devid)
> @@ -739,7 +737,6 @@ static int fsl_esai_probe(struct platform_device *pdev)
>  		return -ENOMEM;
>  
>  	esai_priv->pdev = pdev;
> -	strncpy(esai_priv->name, np->name, sizeof(esai_priv->name) - 1);
>  
>  	/* Get the addresses and IRQ */
>  	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> @@ -779,7 +776,7 @@ static int fsl_esai_probe(struct platform_device *pdev)
>  	}
>  
>  	ret = devm_request_irq(&pdev->dev, irq, esai_isr, 0,
> -			       esai_priv->name, esai_priv);
> +			       dev_name(&pdev->dev), esai_priv);
>  	if (ret) {
>  		dev_err(&pdev->dev, "failed to claim irq %u\n", irq);
>  		return ret;
> -- 
> 1.9.1
> 

  reply	other threads:[~2014-12-29 23:54 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-29 21:57 [PATCH] ASoC: fsl_esai: Use dev_name() for registering the irq Fabio Estevam
2014-12-29 23:54 ` Nicolin Chen [this message]
2014-12-30  1:24   ` Fabio Estevam
2014-12-30 11:24 ` Mark Brown

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=20141229235424.GA2870@Alpha \
    --to=nicoleotsuka@gmail.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=fabio.estevam@freescale.com \
    --cc=festevam@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 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.