From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dmitry Osipenko Subject: Re: [PATCH] dmaengine: tegra-apb: fix platform_get_irq.cocci warnings Date: Thu, 27 Feb 2020 17:50:19 +0300 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: In-Reply-To: Content-Language: en-US Sender: linux-tegra-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Julia Lawall , Andrew Morton Cc: kbuild-all-hn68Rpc1hR1g9hUCZPvPmw@public.gmane.org, Linux Memory Management List , "linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org" , Jon Hunter List-Id: linux-tegra@vger.kernel.org 27.02.2020 13:35, Julia Lawall пишет: > From: kbuild test robot > > Remove dev_err() messages after platform_get_irq*() failures. > platform_get_irq() already prints an error. > > Generated by: scripts/coccinelle/api/platform_get_irq.cocci > > Fixes: 6c41ac96ad92 ("dmaengine: tegra-apb: Support COMPILE_TEST") > CC: Dmitry Osipenko > Signed-off-by: kbuild test robot > Signed-off-by: Julia Lawall > --- > > tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master > head: f3fef7e990dae5fcd7cd8ccbd9b2a98bdb481da8 > commit: 6c41ac96ad9217fe2a6f31c9dcc31b97365b21f6 [4196/4617] dmaengine: tegra-apb: Support COMPILE_TEST > :::::: branch date: 17 hours ago > :::::: commit date: 2 days ago > > Please take the patch only if it's a positive warning. Thanks! > > tegra20-apb-dma.c | 1 - > 1 file changed, 1 deletion(-) > > --- a/drivers/dma/tegra20-apb-dma.c > +++ b/drivers/dma/tegra20-apb-dma.c > @@ -1477,7 +1477,6 @@ static int tegra_dma_probe(struct platfo > irq = platform_get_irq(pdev, i); > if (irq < 0) { > ret = irq; > - dev_err(&pdev->dev, "No irq resource for chan %d\n", i); > goto err_pm_disable; > } > Reviewed-by: Dmitry Osipenko