Commit bdbe05b3 authored by Tang Bin's avatar Tang Bin Committed by David S. Miller
Browse files

net: systemport: Omit superfluous error message in bcm_sysport_probe()



In the function bcm_sysport_probe(), when get irq failed, the function
platform_get_irq() logs an error message, so remove redundant message
here.

Signed-off-by: default avatarTang Bin <tangbin@cmss.chinamobile.com>
Acked-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 27de77ce
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -2475,7 +2475,6 @@ static int bcm_sysport_probe(struct platform_device *pdev)
		priv->wol_irq = platform_get_irq(pdev, 1);
	}
	if (priv->irq0 <= 0 || (priv->irq1 <= 0 && !priv->is_lite)) {
		dev_err(&pdev->dev, "invalid interrupts\n");
		ret = -EINVAL;
		goto err_free_netdev;
	}