Re: [PATCH] EDAC: altera: Remove unnecessary print function dev_err()

From: Joe Perches
Date: Sun Nov 06 2022 - 11:26:14 EST


On Sun, 2022-11-06 at 21:33 +0800, wangkailong@xxxxxxx wrote:
> Eliminate the follow coccicheck warning:
>
> ./drivers/edac/altera_edac.c:2153:2-9: line 2153 is redundant because
> platform_get_irq() already prints an error
> ./drivers/edac/altera_edac.c:2188:2-9: line 2188 is redundant because
> platform_get_irq() already prints an error
[]
> diff --git a/drivers/edac/altera_edac.c b/drivers/edac/altera_edac.c
[]
> @@ -2150,7 +2150,6 @@ static int altr_edac_a10_probe(struct platform_device *pdev)
>
> edac->sb_irq = platform_get_irq(pdev, 0);
> if (edac->sb_irq < 0) {
> - dev_err(&pdev->dev, "No SBERR IRQ resource\n");
> return edac->sb_irq;
> }

Should delete now unnecessary braces too

>
> @@ -2185,7 +2184,6 @@ static int altr_edac_a10_probe(struct platform_device *pdev)
> #else
> edac->db_irq = platform_get_irq(pdev, 1);
> if (edac->db_irq < 0) {
> - dev_err(&pdev->dev, "No DBERR IRQ resource\n");
> return edac->db_irq;
> }
> irq_set_chained_handler_and_data(edac->db_irq,