public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com>
To: "Gustavo A. R. Silva" <garsilva@embeddedor.com>,
	Vinod Koul <vinod.koul@intel.com>,
	Dan Williams <dan.j.williams@intel.com>
Cc: <dmaengine@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] dmaengine: idma64: print error message on platform_get_irq failure
Date: Fri, 30 Jun 2017 11:09:42 +0300	[thread overview]
Message-ID: <23703e5b-e723-bac1-e973-bc29ccb241eb@mentor.com> (raw)
In-Reply-To: <20170630073403.GA24756@embeddedgus>

Hello Gustavo,

On 06/30/2017 10:34 AM, Gustavo A. R. Silva wrote:
> Print error message on platform_get_irq failure before return.
> 
> Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
> ---
>  drivers/dma/idma64.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/dma/idma64.c b/drivers/dma/idma64.c
> index 1953e57..08ade66 100644
> --- a/drivers/dma/idma64.c
> +++ b/drivers/dma/idma64.c
> @@ -637,8 +637,10 @@ static int idma64_platform_probe(struct platform_device *pdev)
>  		return -ENOMEM;
>  
>  	chip->irq = platform_get_irq(pdev, 0);
> -	if (chip->irq < 0)
> +	if (chip->irq < 0) {
> +		dev_err(dev, "failed to get IRQ: %d\n", chip->irq);
>  		return chip->irq;
> +	}
>  
>  	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>  	chip->regs = devm_ioremap_resource(dev, mem);
> 

you do it wrong, please *immedately* stop sending this kind of patches
and revoke all the ones which you have sent so far, one revoke message
for each sent patch is expected.

1) there must be no error level message printed out, if the returned
   by platform_get_irq() value is -EPROBE_DEFER, this notice makes
   all your patches *invalid*,

2) if you wish it, add the error message directly into platform_get_irq(),
   then *remove* any similar error messages from the individual drivers.

--
With best wishes,
Vladimir

      reply	other threads:[~2017-06-30  8:09 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-30  7:34 [PATCH] dmaengine: idma64: print error message on platform_get_irq failure Gustavo A. R. Silva
2017-06-30  8:09 ` Vladimir Zapolskiy [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=23703e5b-e723-bac1-e973-bc29ccb241eb@mentor.com \
    --to=vladimir_zapolskiy@mentor.com \
    --cc=dan.j.williams@intel.com \
    --cc=dmaengine@vger.kernel.org \
    --cc=garsilva@embeddedor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=vinod.koul@intel.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