aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/8390
diff options
context:
space:
mode:
authorYang Li <yang.lee@linux.alibaba.com>2022-03-11 08:17:56 +0800
committerJakub Kicinski <kuba@kernel.org>2022-03-11 22:59:03 -0800
commitd59c85ddacb350ad33b4326a1f4bf50c4c56a500 (patch)
tree0a656baa356f172638af880692a7b309c085138e /drivers/net/ethernet/8390
parentnet: remove exports for netdev_name_node_alt_create() and destroy (diff)
downloadlinux-dev-d59c85ddacb350ad33b4326a1f4bf50c4c56a500.tar.xz
linux-dev-d59c85ddacb350ad33b4326a1f4bf50c4c56a500.zip
ethernet: 8390: Remove unnecessary print function dev_err()
The print function dev_err() is redundant because platform_get_irq() already prints an error. Eliminate the follow coccicheck warning: ./drivers/net/ethernet/8390/mcf8390.c:414:2-9: line 414 is redundant because platform_get_irq() already prints an error Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com> Link: https://lore.kernel.org/r/20220311001756.12234-1-yang.lee@linux.alibaba.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/ethernet/8390')
-rw-r--r--drivers/net/ethernet/8390/mcf8390.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/ethernet/8390/mcf8390.c b/drivers/net/ethernet/8390/mcf8390.c
index 90cd7bdf06f5..21047ae1bc3d 100644
--- a/drivers/net/ethernet/8390/mcf8390.c
+++ b/drivers/net/ethernet/8390/mcf8390.c
@@ -410,10 +410,8 @@ static int mcf8390_probe(struct platform_device *pdev)
int ret, irq;
irq = platform_get_irq(pdev, 0);
- if (irq < 0) {
- dev_err(&pdev->dev, "no IRQ specified?\n");
+ if (irq < 0)
return -ENXIO;
- }
mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (mem == NULL) {