* [PATCH -next v2] spi: microchip-core: Clean up redundant dev_err_probe()
@ 2023-07-28 7:57 Chen Jiahao
2023-07-28 8:05 ` Conor Dooley
2023-07-28 20:05 ` Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: Chen Jiahao @ 2023-07-28 7:57 UTC (permalink / raw)
To: conor.dooley, daire.mcnamara, broonie, linux-riscv, linux-spi
Cc: chenjiahao16
Refering to platform_get_irq()'s definition, the return value has
already been checked if ret < 0, and printed via dev_err_probe().
Calling dev_err_probe() one more time outside platform_get_irq()
is obviously redundant.
Furthermore, platform_get_irq() will never return irq equals 0,
removing spi->irq == 0 checking to clean it up.
Signed-off-by: Chen Jiahao <chenjiahao16@huawei.com>
---
drivers/spi/spi-microchip-core.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/spi/spi-microchip-core.c b/drivers/spi/spi-microchip-core.c
index b59e8a0c5b97..b451cd4860ec 100644
--- a/drivers/spi/spi-microchip-core.c
+++ b/drivers/spi/spi-microchip-core.c
@@ -530,10 +530,8 @@ static int mchp_corespi_probe(struct platform_device *pdev)
return PTR_ERR(spi->regs);
spi->irq = platform_get_irq(pdev, 0);
- if (spi->irq <= 0)
- return dev_err_probe(&pdev->dev, -ENXIO,
- "invalid IRQ %d for SPI controller\n",
- spi->irq);
+ if (spi->irq < 0)
+ return spi->irq;
ret = devm_request_irq(&pdev->dev, spi->irq, mchp_corespi_interrupt,
IRQF_SHARED, dev_name(&pdev->dev), master);
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH -next v2] spi: microchip-core: Clean up redundant dev_err_probe()
2023-07-28 7:57 [PATCH -next v2] spi: microchip-core: Clean up redundant dev_err_probe() Chen Jiahao
@ 2023-07-28 8:05 ` Conor Dooley
2023-07-28 20:05 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Conor Dooley @ 2023-07-28 8:05 UTC (permalink / raw)
To: Chen Jiahao; +Cc: daire.mcnamara, broonie, linux-riscv, linux-spi
[-- Attachment #1: Type: text/plain, Size: 1436 bytes --]
On Fri, Jul 28, 2023 at 03:57:29PM +0800, Chen Jiahao wrote:
> Refering to platform_get_irq()'s definition, the return value has
> already been checked if ret < 0, and printed via dev_err_probe().
> Calling dev_err_probe() one more time outside platform_get_irq()
> is obviously redundant.
>
> Furthermore, platform_get_irq() will never return irq equals 0,
> removing spi->irq == 0 checking to clean it up.
>
> Signed-off-by: Chen Jiahao <chenjiahao16@huawei.com>
> ---
> drivers/spi/spi-microchip-core.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/spi/spi-microchip-core.c b/drivers/spi/spi-microchip-core.c
> index b59e8a0c5b97..b451cd4860ec 100644
> --- a/drivers/spi/spi-microchip-core.c
> +++ b/drivers/spi/spi-microchip-core.c
> @@ -530,10 +530,8 @@ static int mchp_corespi_probe(struct platform_device *pdev)
> return PTR_ERR(spi->regs);
>
> spi->irq = platform_get_irq(pdev, 0);
> - if (spi->irq <= 0)
> - return dev_err_probe(&pdev->dev, -ENXIO,
> - "invalid IRQ %d for SPI controller\n",
> - spi->irq);
> + if (spi->irq < 0)
> + return spi->irq;
Thanks for the update, looks fine to me.
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Thanks,
Conor.
>
> ret = devm_request_irq(&pdev->dev, spi->irq, mchp_corespi_interrupt,
> IRQF_SHARED, dev_name(&pdev->dev), master);
> --
> 2.34.1
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH -next v2] spi: microchip-core: Clean up redundant dev_err_probe()
2023-07-28 7:57 [PATCH -next v2] spi: microchip-core: Clean up redundant dev_err_probe() Chen Jiahao
2023-07-28 8:05 ` Conor Dooley
@ 2023-07-28 20:05 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2023-07-28 20:05 UTC (permalink / raw)
To: conor.dooley, daire.mcnamara, linux-riscv, linux-spi, Chen Jiahao
On Fri, 28 Jul 2023 15:57:29 +0800, Chen Jiahao wrote:
> Refering to platform_get_irq()'s definition, the return value has
> already been checked if ret < 0, and printed via dev_err_probe().
> Calling dev_err_probe() one more time outside platform_get_irq()
> is obviously redundant.
>
> Furthermore, platform_get_irq() will never return irq equals 0,
> removing spi->irq == 0 checking to clean it up.
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
Thanks!
[1/1] spi: microchip-core: Clean up redundant dev_err_probe()
commit: 71ee2a4f95e205bd33e79c7bd4bece3885e0e366
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-07-28 20:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-28 7:57 [PATCH -next v2] spi: microchip-core: Clean up redundant dev_err_probe() Chen Jiahao
2023-07-28 8:05 ` Conor Dooley
2023-07-28 20:05 ` Mark Brown
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).